Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一个新手,真的很想得到一些帮助,以了解如何从我的 APK 中的资产文件夹中检索文件以获取动态壁纸。基本上,如果我想从我的资产文件夹(图像)中检索文件,代码是什么或正确的文件路径格式是什么。
Winrar使用或任何其他 zip 提取器打开 apk 。转到res->drawable-??dpi文件夹。将有所有在 apk 中使用的图像。
Winrar
res->drawable-??dpi
?? 表示 xhdpi 或 hdpi 或 mdpi
Programatically可以通过此代码段完成。
Programatically
Drawable getImage = Drawable.createFromStream(getAssets().open("Cloths/btn_no.png"), null);