0

我看过这篇文章 。然后我尝试制作一个示例来在安装应用程序时捕获事件

这是我的代码`

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    AppInstalled appInstalled = new AppInstalled();
    IntentFilter intentFilter = new IntentFilter();
    intentFilter.addAction(Intent.ACTION_PACKAGE_ADDED);
    intentFilter.addDataScheme("package");
    registerReceiver(appInstalled, intentFilter);
}

private class AppInstalled extends BroadcastReceiver
{
    @Override
    public void onReceive(Context context, Intent intent) {
        Toast.makeText(SplashActivity.this, "Application Installed", Toast.LENGTH_SHORT).show();
    }
}`

但它从不显示消息。请给我一些建议

4

2 回答 2

0

在清单文件中注册您的接收器

  <receiver android:name=".AppInstalled">
    <intent-filter>
        <action android:name="android.intent.action.PACKAGE_INSTALL" />
        <action android:name="android.intent.action.PACKAGE_ADDED" />
        <data android:scheme="package"/>
    </intent-filter>
</receiver>
于 2013-09-17T10:39:02.713 回答
0

您必须将接收器添加到标签下的 AndroidManifest.xml 文件中。请检查一下。

于 2013-09-17T10:32:25.457 回答