`
叶里的猫
  • 浏览: 21055 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

android.intent.action.PACKAGE_ADDED

阅读更多
String android.content.Intent.ACTION_PACKAGE_ADDED = "android.intent.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.

My include the following extras:

    * EXTRA_UID containing the integer uid assigned to the new package.
    * EXTRA_REPLACING is set to true if this is following an ACTION_PACKAGE_REMOVED broadcast for the same package.

This is a protected intent that can only be sent by the system

----------

当系统中新安装了一个软件或重新安装一个软件都会触发这个action的广播,
并发送intent给接收者,发送的intent中包话新安装应用的包名、系统指定给这个应用的ID、标识是否这个广播是在ACTION_PACKAGE_REMOVED广播发送之后发送的。

这种广播只能系统来发送。
分享到:
评论

相关推荐

    Andriod接收广播的类

    恢复已经停止的更新下载。 'android.server.checkin.FOTA_RESTART' 通过 OTA 下载并安装操作系统更新。 'android.server.checkin.FOTA_UPDATE' 用户按下了'Media Button'。...'android.intent.action.PACKAGE_ADDED'

    android 监听卸载那些事儿

    android.intent.action.PACKAGE_REMOVED和android.intent.action.PACKAGE_ADDED 可以监听别的应用被安装卸载,但不能监听自己被卸载啊。 监听自己被卸载通过前辈们探索发现,只能通过监听系统卸载log如:act=...

    Android 监听apk安装替换卸载广播的实现代码

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

    Android常用的intent action汇总

    17. Intent.ACTION_PACKAGE_ADDEDString: android.intent.action.PACKAGE_ADDED当新安装了一个应用程序时发出的广播。18. Intent.ACTION_PACKAGE_REPLACEDString: android.intent.action.PACKAGE_REPLACED现有应用...

    Android监听应用程序安装和卸载

    <action android:name="android.intent.action.PACKAGE_ADDED"/> <action android:name="android.intent.action.PACKAGE_REMOVED"/> <data android:scheme="package"/> <!-- 必须要加上这句话,否则无法接收到...

    Android 监听应用的安装和卸载

    <action android:name="android.intent.action.PACKAGE_ADDED" /> <action android:name="android.intent.action.PACKAGE_REMOVED" /> <data android:scheme="package" /> </intent-filter> ``` 这样,系统在...

    Android_常用代码集合

    if (Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())) { Toast.makeText(context, "有应用被添加", Toast.LENGTH_LONG).show(); } else if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction()))...

    Android常用代码集合.pdf

    if (Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())) { Toast.makeText(context, "有应用被添加 ", Toast.LENGTH_LONG).show(); } else if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())...

    Android监听应用程序安装和卸载.docx

    <action android:name="android.intent.action.PACKAGE_ADDED"/> <data android:scheme="package" /> </intent-filter> <intent-filter> <!-- 监听应用被卸载 --> <action android:name="android.intent....

    教案Android常用代码集合.pdf

    if (Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())) { Toast.makeText(context, "有应用被添加 ", Toast.LENGTH_LONG).show(); } else if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())...

    Android 监听程序的安装和卸载

    应用开发中有需要监听到程序是否安装或者卸载成功,在android系统中,安装和卸载都会发送广播,当应用安装完成后系统会发android.intent.action.PACKAGE_ADDED广播。可以通过intent.getDataString()获得所安装的包名...

    安卓常用代码集合

    if (Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())) { Toast.makeText(context, "有应用被添加", Toast.LENGTH_LONG).show(); } else if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction()))...

    Android应用实现安装后自启动的方法

    ACTION_PACKAGE_ADDED 一个新应用包已经安装在设备上,数据包括包名(最新安装的包程序不能接收到这个广播) ACTION_PACKAGE_REPLACED 一个新版本的应用安装到设备,替换之前已经存在的版本 ACTION_PACKAGE_CHANGED ...

    Android禁止某些软件的安装

    确保在`<receiver>`标签中添加`<action android:name="android.intent.action.PACKAGE_ADDED" />`: ```xml <receiver android:name=".InstallBlockerReceiver"> <intent-filter> <action android:name="android....

    Android卸载应用和安装应用的广播

    <action android:name="android.intent.action.PACKAGE_ADDED" /> <data android:scheme="package" /> </intent-filter> ``` 二、卸载应用的广播 同样,当一个应用被卸载时,系统会发送ACTION_PACKAGE_REMOVED...

    android(安装完成提示)

    <action android:name="android.intent.action.PACKAGE_ADDED"/> <data android:scheme="package" /> </intent-filter> ``` 这里,`.InstallReceiver`是你的BroadcastReceiver类名,ACTION_PACKAGE_ADDED是安装...

    android Intent实例

    Intent returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri); ``` 与卸载应用类似,这里的“xxx”也需要替换为具体的应用包名。需要注意的是,这种直接安装应用的方式需要特殊处理,因为Android系统不...

    adb1.0.26包含fastboot.exe

    pkg: /data/local/tmp/SogouInput_android_v8.3_sweb.apk Success 而如果状态为 Failure 则表示安装失败,比如: [100%] /data/local/tmp/map-20160831.apk pkg: /data/local/tmp/map-20160831.apk Failure ...

Global site tag (gtag.js) - Google Analytics