我感兴趣的使用挂起的意图与当地的广播。 为了让自己清楚,我使用登记接收器和发送广播如下: android.support.v4.content.LocalBroadcastManager
。
我在这工作的服务的本地广播接收机。 我试图从一个自定义通知的布局,其中包括可点击的物品发送本地广播。
当地广播接收器 - 只得到简单的动作意图。 我是想这样的事情无济于事:
Intent backintent = new Intent("GOTO_START_BROADCAST");
PendingIntent backIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, backintent, 0);
RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.custom_notification);
contentView.setOnClickPendingIntent(R.id.imageView1, backIntent);