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

装配apk、卸载apk 代码

2012-06-27 
安装apk、卸载apk代码安装 apk:? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Intent i new Intent(Intent.AC

安装apk、卸载apk 代码
安装 apk:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Intent i = new Intent(Intent.ACTION_VIEW);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? String filePath = appInfo.getAbsolutePath();? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? i.setDataAndType(Uri.parse("file://" + filePath),? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? "application/vnd.android.package-archive");? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? startActivity(i);

卸载 apk:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Uri uri = Uri.fromParts("package",?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? appList.get(pos).getPackageName(),?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? null);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Intent intentuninstall = new Intent(Intent.ACTION_DELETE, uri);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? startActivity(intentuninstall);

热点排行