2010年9月29日星期三

Android - 调动系统包管理器安装 SD 卡上的 apk 包

其实很简单:

File apkFile = new File("/sdcard/download/myapp.apk");
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(apkFile),
             "application/vnd.android.package-archive");
context.startActivity(intent);
 
--
yaoms

没有评论:

发表评论