欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2024-03-06 10:23:37
本文实例讲述了android实现用代码简单安装和卸载apk的方法。分享给大家供大家参考,具体如下: public class testinstallapk ext...

本文实例讲述了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程序设计有所帮助。