Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android實現用代碼簡單安裝和卸載APK的方法

Android實現用代碼簡單安裝和卸載APK的方法

編輯:關於Android編程

本文實例講述了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相關內容感興趣的讀者可查看本站專題:《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved