[Android] Android 學習筆記:讓 app 可以被移動到 SD 卡上執行
突然發現自己寫的 app 不能被移動到 SD 卡上面去…
研究了一下,原來可以移動到 SD 卡的功能是 Android 2.2 (API level 8) 以上才支援的,
並且只需要一個很簡單的設定就可以作到~
只要在 AndroidManifest.xml 的 <manifest> 裡面,
加上一個 android:installLocation 的設定,就可以打開這個功能了~
<manifest xmlns:android=“http://schemas.android.com/apk/res/android”
android:installLocation=”auto” >
android:installLocation=”auto” >
詳細可以使用的參數值請自己參閱 Android SDK: App Install Location 的說明囉~
(本頁面已被瀏覽過 115 次)