【发布时间】:2020-12-08 00:18:41
【问题描述】:
我在 Manifest 中注册了一个广播接收器:
<application ...>
<receiver android:name="com.some.pkg.NewAppReceiver" >
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED" />
</intent-filter>
</receiver>
</appcication>
接收者:
public class NewAppReceiver extends BroadcastReceiver {
private static final String TAG = "NewAppReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Log.d(TAG, "Intent: " + intent.getAction());
}
}
当我手动安装APK 或从Android Market 安装时,什么也没有收到。为什么?
【问题讨论】:
标签: android broadcastreceiver android-4.0-ice-cream-sandwich