這個問題我研究了一陣子==
一直以為是上傳至MARKET有個選項讓我們勾(Application can be copied from the device)
以為勾了就可以使那隻APP能夠安裝到記憶卡裡去==
原來不是!
是要在AndroidManifest.xml裡面插入一個attributes
如下
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="preferExternal">
使用android:installLocation此屬性即可,有三個選項
1.internalOnly(只能安裝在手機裡)
2.preferExternal(自動安裝至記憶卡裡)
3.auto(就是讓使用者自己選啦)