Android app_resources具有用于不同分辨率的各种drawable文件夹,例如drawable-hdpi,drawable-ldpi,drawable-xhdpi,drawable-xxhdpi,drawable-xxxhdpi等...
在以“ hdpi”分辨率的手机上安装应用程序时,应用程序安装是否仅获取可绘制的hdpi图像??
还是在任何手机上安装都会从所有文件夹中获取所有图片...?
谢谢..
答案 0 :(得分:0)
这取决于您如何配置项目
此外,还有其他更高级的发行版:
答案 1 :(得分:0)
APK(一个zip文件)包含资源,因此在安装该应用程序时不会解压缩这些资源:
请参阅:Android: Are raw resources stored locally on the filesystem?和Why does Android keep APK files of installed apps?。
Google Play商店提供了多种方法来处理“大APK”问题:
Using Multiple APKs which uses manifest filters and version codes
Android APK Expansion Files - usually for games exceeding 100MB APK size
以及最近的内容:
Android App Bundles,它需要使用Google Play App Signing,并且对于拆分的APK仅限于Android 5.0及更高版本,对于较低的则限于多APK。
和
Google允许小型本地应用程序无需安装即可以“立即尝试”的方式运行:Instant Apps,该版本也仅限于Android 5.0及更高版本。