现在的位置: 首页 > 综合 > 正文

程序安装/卸载事件监听

2013年08月08日 ⁄ 综合 ⁄ 共 721字 ⁄ 字号 评论关闭

1.程序的安装卸载动作

  • 关于程序安装完成的两个动作

public static final String ACTION_PACKAGE_ADDED

   Broadcast Action: A new application package has been installed on the device. The data contains    the name of the package. Note that the newly installed package does not receive
this broadcast.

    意思是说第一接收到的广播 1.包含 程序包的名字2.注意你安装的程序自己不会接收自己的安装完成的广播
   不过必须同时添加这个<data>这个标签才能起到监听的作用

< intent-filter>

< action android:name="android.intent.action.PACKAGE_REMOVED" />

< data android:scheme="package"/>

< /intent-filter>









public static final String ACTION_PACKAGE_INSTALL

   This constant is deprecated.
    This constant has never been used.
    Broadcast Action: Trigger the download and eventual installation of a package. 

  Input: getData() is
the URI of the package file to download.

  这个应该是说程序安装完成之后,你可以在添加了此动作的 BroadcastReciver里面下载这个程序包


抱歉!评论已关闭.