码迷,mamicode.com
首页 > 移动开发 > 详细

Android之——通用安装apk方法

时间:2015-07-19 18:05:34      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:android   apk   安装   代码   

转载请注明出处:http://blog.csdn.net/l1028386804/article/details/46955863

不多说,直接上代码:

public void installApk(){
	Intent intent = new Intent();
	intent.setAction(Intent.ACTION_VIEW);
	//根据实际情况获取apk名称
	String name = "test.apk";
	File file = new File(Environment.getExternalStorageDirectory(),name);
	intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
	startActivity(intent);
}
别忘了在AndroidManifest.xml中配置权限

<uses-permission android:name="android.permission.INSTALL_PACKAGES"/>

版权声明:本文为博主原创文章,未经博主允许不得转载。

Android之——通用安装apk方法

标签:android   apk   安装   代码   

原文地址:http://blog.csdn.net/l1028386804/article/details/46955863

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!