Android修改應用的預設安裝位置

來源:互聯網
上載者:User

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 一般要安裝到手機記憶體上才能正常運行。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.