首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

apk装配器

2012-08-25 
apk安装器?? File file new File(filePath)?? Intent intent new Intent()?? intent.addFlags(Inten

apk安装器

?? File file = new File(filePath);
?? Intent intent = new Intent();
?? intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
?? intent.setAction(Intent.ACTION_VIEW);
?? String type = "application/vnd.android.package-archive";
?? intent.setDataAndType(Uri.fromFile(file), type);
?? startActivity(intent);

?

注:filePath为apk路径

?

热点排行