警报响起时如何弹出活动?

时间:2014-11-10 20:06:17

标签: java android

在我的广播接收器中,

我有这套:

//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);

出于某种原因,当通知消失时,当闹铃响起时,我想弹出的活动不会弹出。

当闹钟响起/响铃时,如何弹出我的活动?我以前做过,但是我在代码中改变了一些东西搞砸了。

0 个答案:

没有答案