在我的清单中,我在我的活动中添加了:
<intent-filter>
<action android:name="webradio.disneychannel.ACTION_DIALOG_CLOSE" />
<category android:name="android.intent.category.DEFAULT" />
</ intent-filter>
在我的服务中,我启动:
Intent close = new Intent(ACTION_DIALOG_CLOSE);
close.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getApplicationContext().startActivity(close);
哪里ACTION_DIALOG_CLOSE
是String = webradio.disneychannel.ACTION_DIALOG_CLOSE
但是当活动开始时,在简历中,this.getIntent().getAction()
总是返回null ...