您的位置:首页 > 移动开发 > Android开发

Android利用系统广播---监听应用程序安装和卸载

2011-04-15 04:36 633 查看


分类:
android 2011-04-15 04:36
7480人阅读 评论(7)
收藏
举报

第一、 新建监听类:BootReceiver继承BroadcastReceiver

(请发邮件到 fafanqiang@126.com
获得翻强软件,能上youtube哟。)


Java代码


 




public class BootReceiver extends BroadcastReceiver {
  
  
    @Override  
    public void onReceive(Context context, Intent intent) {   
        //接收广播:系统启动完成后运行程序  
        if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {   
             Intent newIntent = new Intent(context, WatchInstall.class);   
newIntent.setAction("android.intent.action.MAIN");             newIntent.addCategory("android.intent.category.LAUNCHER");            newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);            context.startActivity(newIntent);
  
        }   
        //接收广播:设备上新安装了一个应用程序包后自动启动新安装应用程序。  
        if (intent.getAction().equals("android.intent.action.PACKAGE_ADDED")) {   
            String packageName = intent.getDataString().substring(8);   
            System.out.println("---------------" + packageName);   
            Intent newIntent = new Intent();   
           newIntent.setClassName(packageName,packageName+ .MainActivity");   
newIntent.setAction("android.intent.action.MAIN");             newIntent.addCategory("android.intent.category.LAUNCHER");             newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  
            context.startActivity(newIntent);   
        }   
        //接收广播:设备上删除了一个应用程序包。  
        if (intent.getAction().equals("android.intent.action.PACKAGE_REMOVED")) {   
            System.out.println("********************************");   
            DatabaseHelper dbhelper = new DatabaseHelper();   
            dbhelper.executeSql("delete from users");   
        }   
    }  

[java]
view plaincopyprint?

public class BootReceiver extends BroadcastReceiver {  
  
    @Override  
    public void onReceive(Context context, Intent intent) {  
        //接收广播:系统启动完成后运行程序   
        if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {  
             Intent newIntent = new Intent(context, WatchInstall.class);  
newIntent.setAction("android.intent.action.MAIN");             newIntent.addCategory("android.intent.category.LAUNCHER");            newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);            context.startActivity(newIntent);  
        }  
        //接收广播:设备上新安装了一个应用程序包后自动启动新安装应用程序。   
        if (intent.getAction().equals("android.intent.action.PACKAGE_ADDED")) {  
            String packageName = intent.getDataString().substring(8);  
            System.out.println("---------------" + packageName);  
            Intent newIntent = new Intent();  
           newIntent.setClassName(packageName,packageName+ .MainActivity");  
newIntent.setAction("android.intent.action.MAIN");             newIntent.addCategory("android.intent.category.LAUNCHER");             newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
            context.startActivity(newIntent);  
        }  
        //接收广播:设备上删除了一个应用程序包。   
        if (intent.getAction().equals("android.intent.action.PACKAGE_REMOVED")) {  
            System.out.println("********************************");  
            DatabaseHelper dbhelper = new DatabaseHelper();  
            dbhelper.executeSql("delete from users");  
        }  
    }  

public class BootReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
//接收广播:系统启动完成后运行程序
if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {
Intent newIntent = new Intent(context, WatchInstall.class);
newIntent.setAction("android.intent.action.MAIN");             newIntent.addCategory("android.intent.category.LAUNCHER");            newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);            context.startActivity(newIntent);
}
//接收广播:设备上新安装了一个应用程序包后自动启动新安装应用程序。
if (intent.getAction().equals("android.intent.action.PACKAGE_ADDED")) {
String packageName = intent.getDataString().substring(8);
System.out.println("---------------" + packageName);
Intent newIntent = new Intent();
newIntent.setClassName(packageName,packageName+ .MainActivity");
newIntent.setAction("android.intent.action.MAIN");             newIntent.addCategory("android.intent.category.LAUNCHER");             newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(newIntent);
}
//接收广播:设备上删除了一个应用程序包。
if (intent.getAction().equals("android.intent.action.PACKAGE_REMOVED")) {
System.out.println("********************************");
DatabaseHelper dbhelper = new DatabaseHelper();
dbhelper.executeSql("delete from users");
}
}


第二、 修改AndroidManifest.xml配置文件

Xml代码


 




<?xml version="1.0" encoding="UTF-8"?>  
<manifest xmlns:android="http://schemas.android.com/apk/res/android"  
     package="org.me.watchinstall">  
    <application>  
        <receiver android:name=".BootReceiver"  
                  android:label="@string/app_name">  
            <intent-filter>  
                <action android:name="android.intent.action.BOOT_COMPLETED"/>  
                <category android:name="android.intent.category.LAUNCHER" />  
            </intent-filter>  
            <intent-filter>  
             <action android:name="android.intent.action.PACKAGE_ADDED" />  
             <action android:name="android.intent.action.PACKAGE_REMOVED" />  
              <data android:scheme="package" />  
<!-- 注意!! 这句必须要加,否则接收不到BroadCast -->  
            </intent-filter>  
        </receiver>  
        <activity android:name=".WatchInstall" android:label="WatchInstall">  
            <intent-filter>  
                <action android:name="android.intent.action.MAIN"/>  
                <category android:name="android.intent.category.LAUNCHER"/>  
            </intent-filter>  
        </activity>  
    </application>  
    <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>  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Android