Android系统中应用的安装和卸载的监听
Posted Youxian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android系统中应用的安装和卸载的监听相关的知识,希望对你有一定的参考价值。
一、创建一个类继承BroadcastReceiver并且复写onReceive的方法
public class AppStateReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if ("android.intent.action.PACKAGE_ADDED".equals(action)) { Toast.makeText(context, "应用被安装了", Toast.LENGTH_SHORT).show(); } else if ("android.intent.action.PACKAGE_REMOVED".equals(action)) { //获取被卸载的包名 Uri data = intent.getData(); String pac = data.toString(); Toast.makeText(context, pac, Toast.LENGTH_SHORT).show(); Toast.makeText(context, "应用被卸载了", Toast.LENGTH_SHORT).show(); } } }
二、在AndroidManifest.xml文件中配置如下:
<receiver android:name=".AppStateReceiver"> <intent-filter> <action android:name="android.intent.action.PACKAGE_ADDED"/> <action android:name="android.intent.action.PACKAGE_REMOVED"/> <data android:scheme="package"/> </intent-filter> </receiver>
以上是关于Android系统中应用的安装和卸载的监听的主要内容,如果未能解决你的问题,请参考以下文章
Android实战开发篇 全网最详细广播监听应用APK卸载覆盖安装!!!