Android修改應用的預設安裝位置
Google預設的PackageManager,會讀取應用AndroidManifest.xml的對應定義installLocation:
規則如下:
1.如果沒有定義安裝位置,表示安裝在手機記憶體上;
2. android:installLocation = "auto",先查看手機記憶體是否足夠,如果夠就安裝在手機記憶體上,不夠就安裝在T 卡上;
3. android:installLocation = "internalOnly",表示安裝在手機記憶體上;
4. android:installLocation = "preferExternal" ,表示安裝在 T 卡上;
如何在設定中增加“選取應用安裝位置”的功能,讓使用者選擇預設的安裝位置?
修改如下檔案:
frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java
做以下修改:
loadSetting(stmt, Global.SET_INSTALL_LOCATION, 0);
改為:
loadSetting(stmt, Secure.SET_INSTALL_LOCATION, 1);
loadSetting(stmt, Settings.Secure.SET_INSTALL_LOCATION, 0);
改為:
loadSetting(stmt, Settings.Secure.SET_INSTALL_LOCATION, 1);
這樣修改之後,在設定>應用中會出現“選取應用安裝位置”的功能,不過無論在這裡選擇什麼,對於應用中AndroidManifest.xml檔案中聲明
android:installLocation = "internalOnly"
的,該apk 都會安裝到手機上,這樣做的好處是避免程式運行錯誤,因為定義android:installLocation = "internalOnly" 的 apk 一般要安裝到手機記憶體上才能正常運行。