android 软件安装与卸载(转)

安装:从sdcard

  1. String fileName = Environment.getExternalStorageDirectory() + "/myApp.apk";           
  2. Intent intent = new Intent(Intent.ACTION_VIEW);        
  3. intent.setDataAndType(Uri.parse("file://" + filePath),"application/vnd.android.package-archive");        
  4. 或者        
  5. //intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");         
  6. startActivity(intent);    

卸载

  1. Uri packageURI = Uri.parse("package:com.android.myapp");           
  2. Intent uninstallIntent = new Intent(Intent.ACTION_DELETE, packageURI);           
  3. startActivity(uninstallIntent);   

原文http://blog.csdn.net/fenghome/archive/2010/06/16/5673757.aspx

posted on 2011-03-17 13:18  陆晓峰  阅读(866)  评论(0编辑  收藏  举报

导航