Android程式强制安装SD卡

Android程式强制安装SD卡
Android程式强制安装SD卡

Android程式默認装係内部存储,因佢有极快讀寫速度, 係Android2.2 後可强制装係SD卡, 但SD讀寫慢, 可能會影响程式表現. 編輯AndroidManifest.xml係manifest添installLocation属. 預設装係外部存储 preferExternal.

AndroidManifest.xml
<manifest xmlns:android=”http://schemas.android.com/apk/res/android”

package=”net.bookcard.GeomanticCompass”

android:installLocation=”preferExternal”>

</manifest>

 

評論