Android:将应用程序移至 SD(完全)
我怎样才能让用户将应用程序完全移动到 SD 卡上? 我在 android 清单中使用了 android:installLocation="auto"
,但它似乎并没有移动整个应用程序,只是移动了一部分。 你能解释一下如何让它完全移动吗?
How can I let the user move an app to SD card, but totally?
I've used android:installLocation="auto"
in the android manifest, but it seems that it not move the entire app, only a piece.
Can you explain me how to let it move totally?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法将应用程序“完全”移动到外部存储。您正在使用的就是您最好的选择。如果您的应用程序由于媒体内容等数据或用户创建的媒体而消耗大量内存。编写使用外部存储来存储此类数据的代码。
There is no way you can move app "totally" to the external storage. What you are using is your best possible bet. If your app consumes lot of memory due to data such media content etc or user created media. Write code which uses the external storage to store such data.