当前位置: 代码迷 >> Android >> android 设立程序安装位置
  详细解决方案

android 设立程序安装位置

热度:62   发布时间:2016-05-01 19:18:35.0
android 设置程序安装位置

在android2.2 版本和以后的版本中,android应用可以自定义选择安装的路径

?

AndroidManifest.xml

下面的

manifest节点中有个属性叫:android:installLocation 可以决定程序安装的路径

属性的值有:

auto --------自动,有系统决定安装位置

internalOnly ? ---- 手机内存

preferExternal ----------外部存储设备

?

代码:

?

?<manifest xmlns:android="http://schemas.android.com/apk/res/android"

? ? ? package="com.test"

? ? ? android:versionCode="1"

? ? ? android:installLocation="preferExternal"

? ? ? android:versionName="1.0">

?

?

  相关解决方案