You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.
For the function withStickerFeature(), I found that I can't change the default sticker set, how can I change it? Please update me if you have any solutions of it, thankyou!
The text was updated successfully, but these errors were encountered:
You can then specify the path beneath res/drawable to the stickers of each category/type:
<string-arraytranslatable="false"name="iamutkarshtiwari_github_io_ananas_types">
<item>shape</item> <!-- path for category 1 -->
<item>foo</item> <!-- path for category 2 ... -->
</string-array>
And then you have to specify the amount of stickers in each category/type:
<integer-arraytranslatable="false"name="iamutkarshtiwari_github_io_ananas_type_count">
<item>2</item> <!-- 2 stickers in category 1 -->
</integer-array>
The darwables for the stickers have to be located in res/drawable/$path_$n. So e.g. my two files for category 1 are res/drawable/shape_1.png and res/drawable/shape_2.png.
Note that the drawables must be bitmaps as of now. XML drawables don't work.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For the function withStickerFeature(), I found that I can't change the default sticker set, how can I change it? Please update me if you have any solutions of it, thankyou!
The text was updated successfully, but these errors were encountered: