在某些使用min sdk 3(Android 1.5)的應用程序中,我可以將應用程序從Desire HD移至SD卡(Android 2.2)如何以編程方式將應用程序移動到需要SD卡的應用程序Android 1.5及以上。將應用程序移至SD卡
30
A
回答
64
添加安卓的installLocation = 「自動」 屬性,在manifest.xml中的標籤
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mycompany.myapp" android:installLocation="auto"
android:versionCode="2" android:versionName="1.2">
它將使移動到SD卡按鈕,您的應用程序。
28
您需要在您的AndroidManifest.xml的<manifest>
元素中包含android:installLocation="auto"
或android:installLocation="preferExternal"
。您還需要將目標API版本設置爲Froyo(但最低API版本可能更低)。
更多信息:http://developer.android.com/guide/appendix/install-location.html
4
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="string"
android:sharedUserId="string"
android:sharedUserLabel="string resource"
android:versionCode="integer"
android:versionName="string"
android:installLocation=["auto" | "internalOnly" | "preferExternal"] >
</manifest>
僅供參考檢查this
相關問題
- 1. 無法將應用移至SD卡
- 2. 移動應用程序到SD卡
- 3. 移動應用程序到SD卡
- 4. 在SD卡上移動應用程序
- 5. Android:將應用程序移至sd(完全)
- 6. 如何找出應用程序是否已移至Android上的SD卡
- 7. 將PhoneGap應用程序移至前臺
- 8. SD卡上的Android應用程序
- 9. 在SD卡上安裝應用程序
- 10. Android應用程序下載SD卡
- 11. Android應用程序不會從SD卡
- 12. 通過SD卡運行應用程序
- 13. 移動應用程序數據文件到SD卡
- 14. 我如何識別該應用程序可移動到SD卡?
- 15. 應用程序不能移動到SD卡
- 16. 想要避免移動應用程序到SD卡
- 17. 爲什麼有些應用程序無法移動到SD卡?
- 18. 將Apk移動到SD卡
- 19. 將平板電腦上的所有應用程序移動到SD卡
- 20. 如何將應用程序從手機內存移動到SD卡在Android
- 21. 如何通過shell腳本將應用程序移動到SD卡
- 22. 移動到SD卡
- 23. 移動到SD卡
- 24. 移動到SD卡
- 25. 將Android應用程序移動到SD而不是interal內存
- 26. 將應用程序移動到SD的能力被破壞
- 27. 將SQL2005應用移至SQL2008
- 28. 當應用程序沒有插入時,應用程序在裝有可移動SD卡的設備上崩潰
- 29. 開發人員如何強制應用程序移動到SD卡
- 30. 爲什麼整個Android應用程序沒有移動到SD卡?
不要忘記,以紀念一個人的響應點擊旁邊的響應上對勾回答 – Atticus 2011-05-10 09:06:43