Android APK安装完成自动删除安装包

时间:2022-10-26 07:06:16
需要实现此功能,一般实际开发是在自动版本更新上,当更新完开始自动安装完毕后,删除内存卡里的安装包。实现方式很简单,监听应用广播,获取内存卡下的文件,删除!
1、监听广播
  1. package com.example.a75213.testdownloaddemo;
  2. import android.content.BroadcastReceiver;
  3. import android.content.Context;
  4. import android.content.Intent;
  5. import android.widget.Toast;
  6. import com.example.a75213.testdownloaddemo.contant.comm;
  7. /**
  8. * Created by 75213 on 2017/11/7.
  9. */
  10. public class InitApkBroadCastReceiver extends BroadcastReceiver {
  11. @Override
  12. public void onReceive(Context context, Intent intent) {
  13. if (Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())) {
  14. comm.rmoveFile("http://imtt.dd.qq.com/16891/7C7BB50B68B684A36339AF1F615E2848.apk");
  15. Toast.makeText(context , "监听到系统广播添加" , Toast.LENGTH_LONG).show();
  16. }
  17. if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())) {
  18. comm.rmoveFile("http://imtt.dd.qq.com/16891/7C7BB50B68B684A36339AF1F615E2848.apk");
  19. Toast.makeText(context , "监听到系统广播移除" , Toast.LENGTH_LONG).show();
  20. System.out.println("");
  21. }
  22. if (Intent.ACTION_PACKAGE_REPLACED.equals(intent.getAction())) {
  23. comm.rmoveFile("http://imtt.dd.qq.com/16891/7C7BB50B68B684A36339AF1F615E2848.apk");
  24. Toast.makeText(context , "监听到系统广播替换" , Toast.LENGTH_LONG).show();
  25. }
  26. }
  27. }
2、记得给删除权限和广播注册【AndroidMainifest】
  1. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  2. <receiver
  3. android:name=".InitApkBroadCastReceiver"
  4. android:enabled="true">
  5. <intent-filter>
  6. <action android:name="android.intent.action.PACKAGE_ADDED" />
  7. <action android:name="android.intent.action.PACKAGE_REPLACED" />
  8. <action android:name="android.intent.action.PACKAGE_REMOVED" />
  9. <data android:scheme="package" />
  10. </intent-filter>
  11. </receiver>
 

3、删除工具类

  1. package com.example.a75213.testdownloaddemo.contant;
  2. import android.os.Environment;
  3. import java.io.File;
  4. /**
  5. * Created by 75213 on 2017/11/1.
  6. */
  7. public class comm{
  8. public static File getPathFile(String path){
  9. String apkName = path.substring(path.lastIndexOf("/"));
  10. File outputFile = new File(Environment.getExternalStoragePublicDirectory
  11. (Environment.DIRECTORY_DOWNLOADS), apkName);
  12. return outputFile;
  13. }
  14. public static void rmoveFile(String path){
  15. File file = getPathFile(path);
  16. file.delete();
  17. }
  18. }