亲宝软件园·资讯

展开

Android用代码安装和卸载APK Android实现用代码简单安装和卸载APK的方法

llyofdream 人气:0
想了解Android实现用代码简单安装和卸载APK的方法的相关内容吗,llyofdream在本文为您仔细讲解Android用代码安装和卸载APK的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android,安装,卸载,APK,下面大家一起来学习吧。

本文实例讲述了Android实现用代码简单安装和卸载APK的方法。分享给大家供大家参考,具体如下:

public class TestInstallAPK extends Activity {
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 // TODO Auto-generated method stub
 super.onCreate(savedInstanceState);
 // this.unInstallFile();
 installFile();
 }
 /**
 * install APK code
 */
 private void installFile(){
 Intent intent = new Intent(Intent.ACTION_VIEW);
  intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  intent.setAction(android.content.Intent.ACTION_VIEW);
//  String type = getMIMEType(f);
//  intent.setDataAndType(Uri.fromFile(f), type);
 intent.setDataAndType(Uri.parse("file://" + "/sdcard/Android_gc.apk"),
  "application/vnd.android.package-archive");
 this.startActivity(intent);
 }
 /**
 * uninstall APK code
 */
 private void unInstallFile(){
 Uri uri=Uri.parse("package:com.gameclient");
 Intent intent = new Intent(Intent.ACTION_DELETE,uri);
 this.startActivity(intent);
 }
}

希望本文所述对大家Android程序设计有所帮助。

加载全部内容

相关教程
猜你喜欢
用户评论