2011-05-10 134 views
30

在某些使用min sdk 3(Android 1.5)的應用程序中,我可以將應用程序從Desire HD移至SD卡(Android 2.2)如何以編程方式將應用程序移動到需要SD卡的應用程序Android 1.5及以上。將應用程序移至SD卡

+0

不要忘記,以紀念一個人的響應點擊旁邊的響應上對勾回答 – Atticus 2011-05-10 09:06:43

回答

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卡按鈕,您的應用程序。

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