亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何監聽APK安裝與刪除等過程

發布時間:2021-08-04 14:00:30 來源:億速云 閱讀:139 作者:小新 欄目:移動開發

這篇文章主要介紹Android如何監聽APK安裝與刪除等過程,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體如下:

軟件下載后的一系列動作監聽:先前是通過Service監聽掃描獲取狀態,以后用這個方法測試使用

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
public class getBroadcast extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
         if(Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())){
          Toast.makeText(context, "有應用被添加", Toast.LENGTH_LONG).show();
      }
        else if(Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())){
          Toast.makeText(context, "有應用被刪除", Toast.LENGTH_LONG).show();
      }
       /*  else if(Intent.ACTION_PACKAGE_CHANGED.equals(intent.getAction())){
          Toast.makeText(context, "有應用被改變", Toast.LENGTH_LONG).show();
      }*/
        else if(Intent.ACTION_PACKAGE_REPLACED.equals(intent.getAction())){
          Toast.makeText(context, "有應用被替換", Toast.LENGTH_LONG).show();
      }
        /* else if(Intent.ACTION_PACKAGE_RESTARTED.equals(intent.getAction())){
          Toast.makeText(context, "有應用被重啟", Toast.LENGTH_LONG).show();
      }*/
       /* else if(Intent.ACTION_PACKAGE_INSTALL.equals(intent.getAction())){
          Toast.makeText(context, "有應用被安裝", Toast.LENGTH_LONG).show();
      }*/
    }
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="zy.Broadcast"
   android:versionCode="1"
   android:versionName="1.0">
  <application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".Broadcast"
         android:label="@string/app_name">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
   <receiver android:name="getBroadcast" android:enabled="true" >
     <intent-filter>
     <action android:name="android.intent.action.PACKAGE_ADDED"></action>
     <!-- <action android:name="android.intent.action.PACKAGE_CHANGED"></action>-->
     <action android:name="android.intent.action.PACKAGE_REMOVED"></action>
     <action android:name="android.intent.action.PACKAGE_REPLACED"></action>
     <!-- <action android:name="android.intent.action.PACKAGE_RESTARTED"></action>-->
    <!--  <action android:name="android.intent.action.PACKAGE_INSTALL"></action>-->
      <data android:scheme="package"></data>
       </intent-filter>
</receiver>
  </application>
  <uses-sdk android:minSdkVersion="7" />
</manifest>

代碼實現添加:

private final BroadcastReceiver apkInstallListener = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
      if(Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())){
      System.out.println("**************Broadcase*************");
      File file = uninstallApk.get(isDeleted);
      System.out.println(file.toString()+"*****");
       file.delete();
        //System.out.println(uninstallApk.size()+"(*******"+uApks.size());
       if(uninstallApk!=null&&uApks!=null)
       {
       uninstallApk.remove(isDeleted);
       uApks.remove(isDeleted);
       }
      //清除集合里面的值
        if(uninstallApk!=null)
        {
         System.out.println("onpause******"+uninstallApk.size());
         uninstallApk.clear();
        }
        if(uApks!=null)
        {
         uApks.clear();
        }
          System.out.println("******應用添加***"+isDeleted);
       Toast.makeText(context, "有應用被添加"+isDeleted, Toast.LENGTH_LONG).show();
      }
        else if(Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())){
          System.out.println("*****應用被刪除");
         Toast.makeText(context, "有應用被刪除", Toast.LENGTH_LONG).show();
      }
       /*  else if(Intent.ACTION_PACKAGE_CHANGED.equals(intent.getAction())){
          Toast.makeText(context, "有應用被改變", Toast.LENGTH_LONG).show();
      }*/
        else if(Intent.ACTION_PACKAGE_REPLACED.equals(intent.getAction())){
          System.out.println("****應用被替換");
         Toast.makeText(context, "有應用被替換", Toast.LENGTH_LONG).show();
      }
        /* else if(Intent.ACTION_PACKAGE_RESTARTED.equals(intent.getAction())){
          Toast.makeText(context, "有應用被重啟", Toast.LENGTH_LONG).show();
      }*/
       /* else if(Intent.ACTION_PACKAGE_INSTALL.equals(intent.getAction())){
          Toast.makeText(context, "有應用被安裝", Toast.LENGTH_LONG).show();
      }*/
  }
};
// 注冊監聽
private void registerSDCardListener(){
    IntentFilter intentFilter = new IntentFilter(Intent.ACTION_MEDIA_MOUNTED);
    intentFilter.addAction(Intent.ACTION_PACKAGE_ADDED);
    intentFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
    intentFilter.addAction(Intent.ACTION_PACKAGE_REPLACED);
    intentFilter.addDataScheme("package");
    registerReceiver(apkInstallListener, intentFilter);
}

java里的調用 registerSDCardListener()

@Override
protected void onDestroy()
{
 super.onDestroy();
 //unregisterReceiver(apkInstallListener);
}

以上是“Android如何監聽APK安裝與刪除等過程”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

象山县| 公主岭市| 阿尔山市| 高密市| 隆德县| 那坡县| 广昌县| 邹城市| 五台县| 大理市| 朔州市| 安多县| 吴忠市| 广昌县| 宜宾县| 咸阳市| 高清| 长乐市| 西峡县| 教育| 莎车县| 吕梁市| 乡宁县| 紫云| 沙田区| 科技| 曲松县| 灵武市| 隆昌县| 苍南县| 东丽区| 大姚县| 万安县| 永登县| 阜南县| 武威市| 顺昌县| 德钦县| 澳门| 仁怀市| 上栗县|