0

我试图在一段时间后从我的游戏中发布通知。我从我的 BroadcastReciever 类的 onReceive() 方法调用 PostNotification() 函数,在游戏开始 1 分钟后发布通知。

广播接收器

public class NotificationReciever extends BroadcastReceiver
{

private static int count=0;

@Override
public void onReceive(Context context, Intent intent)
{
    try 
    {
         Bundle bundle = intent.getExtras();
         String message = bundle.getString("message");
         int id = bundle.getInt("id");
         PostNotification(message, id);
    }
    catch (Exception e) 
    {
         e.printStackTrace();
    }
    wl.release();
}

public void PostNotification(String notif, int id)
{
    Notification notify=new Notification(R.drawable.icon,
            notif,
            System.currentTimeMillis());
Intent intent = new Intent(MyUtil.getInstance().context, MyActivity.class);
        PendingIntent i=PendingIntent.getActivity(MyUtil.getInstance().context, 0, intent, 0);
        notify.setLatestEventInfo(MyUtil.getInstance().context, "Title", notif, i);  
        MyActivity.notifyMgr.notify(id, notify);
        }
    }
}

我从 MyActivity 的 onCreate() 调用 ScheduleNotification()

public void ScheduleNotification()
{
     Calendar cal = Calendar.getInstance();
     Intent intent = new Intent(MyUtil.getInstance().context, NotificationReciever.class);
     intent.putExtra("id", NOTIFY_ID);
     intent.putExtra("message", "message");
     PendingIntent sender = PendingIntent.getBroadcast(MyUtil.getInstance().context, NOTIFY_ID, intent, PendingIntent.FLAG_UPDATE_CURRENT);
     AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
     am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), sender);
}

但我没有收到任何通知,并在我的 logcat 中收到以下错误

  01-11 19:28:32.455: W/System.err(20661): java.lang.NullPointerException
01-11 19:28:32.475: W/System.err(20661):    at android.content.ComponentName.<init>(ComponentName.java:75)
01-11 19:28:32.475: W/System.err(20661):    at android.content.Intent.<init>(Intent.java:2893)
01-11 19:28:32.475: W/System.err(20661):    at com.games.TestGame.NotificationReciever.PostNotification(NotificationReciever.java:41)
01-11 19:28:32.475: W/System.err(20661):    at com.games.TestGame.NotificationReciever.onReceive(NotificationReciever.java:27)

我知道在创建通知意图时我做错了。当我直接从我的活动中调用时,我会正确收到通知,但是当我通过警报调用它时出现问题

Intent intent = new Intent(MyUtil.getInstance().context, MyActivity.class);

谁能告诉我哪里出错了。

4

2 回答 2

1

您使用的 Notification 构造函数的when参数仅用于显示目的。它不会延迟通知的显示。

使用闹钟怎么样?不过,它只会接受一个 Intent。

于 2013-01-11T10:32:09.643 回答
1

这是完全的理解错误。看细节public Notification (int icon, CharSequence tickerText, long when)。如下所示:

icon 要放入状态栏中的图标的资源 ID。

tickerText通知首次激活时在状态栏中流过的文本。

when 在时间字段中显示的时间。在 System.currentTimeMillis 时基中。

这意味着它只是在通知消息中显示,而不是在通知时间。如果你想在未来的某个时间发出通知,你必须为那个时间设置一个 AlermManager。AlermManager 将调用 BroadcastReceiver。所以你还必须创建一个广播接收器,你必须在其中设置通知。你可以通过这个链接

于 2013-01-11T10:34:01.830 回答