Sadeq
Sadeq
i have another idea too 😃👍 Edit this line (777) of `MaterialRippleLayout ` my mean ---> `public MaterialRippleLayout create() {` edit it to `public CardView create() {` then remove these...
`simplePagerTitleView.setTypeface(ResourcesCompat.getFont(context, R.font.arbaeen));`
سلام تا جایی که یادمه نیازی به دسکاری کد جاوا نداره اگه خطایی میده متن کامل ارور رو قرار بدید
آره دیگه پروژه رو دانلود میکنید و کپی میکنید توی پروژه اصلی خودتون فقط محتوای xml رو تغییر میدید همین .
This is my problem too !
Goto `StickerView `class , and remove `final `from `bringToFrontCurrentSticker `variable. `private final boolean bringToFrontCurrentSticker;` To : `private boolean bringToFrontCurrentSticker;` then make a method like this : ``` public void bringToFrontCurrentSticker()...
maybe you want this : https://github.com/wuapnjie/StickerView/issues/54
maybe you want this ... `stickerView.addSticker(mysticker, Sticker.Position.TOP | Sticker.Position.RIGHT);`
👍 Sorry for my English ... Go to `StickerView `class and remove `final `from these variables : `showIcons `, `showBorder` ``` private final boolean showIcons; to --> private boolean showIcons;...
``` @Override public void onStickerClicked(@NonNull Sticker sticker) { if (sticker instanceof TextSticker) { TextSticker textSticker = (TextSticker) sticker; textSticker.setText("new text"); textSticker.resizeText(); } } ```