Android监听程序的装配和卸载

Android监听程序的安装和卸载? ? ? ? }?? ? ? ? if (intent.getAction().equals(android.intent.action.P

Android监听程序的安装和卸载


? ? ? ? }

?

? ? ? ? if (intent.getAction().equals("android.intent.action.PACKAGE_REMOVED")) {

? ? ? ? ?String packageName = intent.getDataString();

? ? ? ? ? Log.i("Test","---------------" + "PACKAGE_REMOVED" + packageName);

? ? ? ? }

}

}

?

<?xml version="1.0" encoding="utf-8"?>

<manifest

? ?xmlns:android="http://schemas.android.com/apk/res/android"

? ? package="com.test"

? ? android:versionCode="1"

? ? android:versionName="1.0">

? ? <application

? ? ?android:icon="@drawable/icon"

? ? ?android:label="测试">

? ? ? ? <receiver android:name=".PackageReceiver"

? ? ? ? ? ? ? ? ? android:label="@string/app_name">

? ? ? ? ? ? <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>

? ? </application>

? ? <uses-sdk android:minSdkVersion="7" />

? ?<uses-permission android:name="android.permission.INTERNET" />

? ? <uses-permission android:name="android.permission.RESTART_PACKAGES"/>

? ? <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

</manifest>?

?

?

?

?

?