在我的广播接收器中,
我有这套:
//Intent that enables the view to pop up when alarm goes off
Intent i = new Intent();
i.setClassName("com.example.Device.MainActivity", "com.example.Device.OtherActivity");
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
在我的通知服务中,我有这个:
// First let's define the intent to trigger when notification is selected
// Start out by creating a normal intent (in this case to open an activity)
intent = new Intent(this, OtherActivity.class);
出于某种原因,当通知消失时,当闹铃响起时,我想弹出的活动不会弹出。
当闹钟响起/响铃时,如何弹出我的活动?我以前做过,但是我在代码中改变了一些东西搞砸了。