Android,我怎么能在SD卡上安装一个完整的应用程序

时间:2011-05-04 13:51:31

标签: android

我已经构建了我的应用程序,但只是意识到应用程序很重,所以我想知道如何才能在Sd卡上安装所有内容。

 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    android:installLocation="preferExternal"
  package="com.Travel"
  android:versionCode="1" android:versionName="1.00B1">
<uses-sdk android:minSdkVersion="8"  />

<application android:icon="@drawable/icon" android:label="@string/app_name">
<supports-screens
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:resizeable="true"
    android:anyDensity="true"/>
    <activity android:name=".Travel"
              android:label="@string/app_name" android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>

感谢!!!!

1 个答案:

答案 0 :(得分:3)

来自official documentation

以这种方式修改清单文件:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="preferExternal"
... >

这仅适用于运行Android 2.2或更高版本的设备。