2016-07-31 118 views
0

我試圖在我的Alarm Receiver類中收到一個特定的警報時發送通知,該類然後將通知發送給在後臺運行的另一個服務。如何在服務中實現通知?

我收到此錯誤:

Attempt to invoke virtual method 'java.lang.String android.content.Context.getPackageName()' on a null object reference 

我已經研究了很多關於這個話題,但沒有,我找到了解決方案的工作過。

這是報警接收機類

public void onReceive(Context context, Intent intent) 
    { 
     switch(intent.getIntExtra("DosageIdentifier",-1)) { 
      case 1: 
      { 
       for(int i = 0; i < SetMyAlarm.countSeqWithDatabaseList.size(); i++) 
       { 
        prescriptionString = SetMyAlarm.prescriptionList.get(i); 
        myNotification.acceptNotificationString(prescriptionString); 

       } 
       break; 
      } 

這是我SetMyAlarm服務

public void acceptNotificationString(String text) 
    { 
     sendNotification(text); 
    } 
    private void sendNotification(String text) { 
     try { 
      Intent notificationIntent = new Intent(this, MainActivity.class); 
      notificationIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 

      int flags = PendingIntent.FLAG_UPDATE_CURRENT; 
      PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, flags); 

      int icon = R.mipmap.ic_launcher; 
      CharSequence tickerText = "ALERT"; 
      CharSequence contentTitle = "Notification"; 
      CharSequence contentText = text; 

      Notification notification = new Notification.Builder(this) 
        .setSmallIcon(icon) 
        .setTicker(tickerText) 
        .setContentTitle(contentTitle) 
        .setContentText(contentText) 
        .setContentIntent(pendingIntent) 
        .setAutoCancel(true) 
        .build(); 

      NotificationManager manager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); 
      final int NOTIFICATION_ID = 1; 
      manager.notify(NOTIFICATION_ID, notification); 
     } 
     catch (NullPointerException e) 
     { 
      e.printStackTrace(); 
     } 
    } 

這是我收到的錯誤:

java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.content.Context.getPackageName()' on a null object reference 
    at android.content.ContextWrapper.getPackageName(ContextWrapper.java:133) 
    at android.content.ComponentName.<init>(ComponentName.java:128) 
    at android.content.Intent.<init>(Intent.java:4449) 
    at timertesting.kaad.timertesting.SetMyAlarm.sendNotification(SetMyAlarm.java:564) 
    at timertesting.kaad.timertesting.SetMyAlarm.acceptNotificationString(SetMyAlarm.java:560) 
    at timertesting.kaad.timertesting.AlarmReceiver.onReceive(AlarmReceiver.java:23) 
    at android.app.ActivityThread.handleReceiver(ActivityThread.java:2725) 
    at android.app.ActivityThread.-wrap14(ActivityThread.java) 
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1421) 
    at android.os.Handler.dispatchMessage(Handler.java:102) 
    at android.os.Looper.loop(Looper.java:148) 
    at android.app.ActivityThread.main(ActivityThread.java:5417) 
    at java.lang.reflect.Method.invoke(Native Method) 
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) 
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 

有何建議?

+0

acceptNotificationString()是每個類的一部分嗎?活動,服務?插入更多代碼 – W0rmH0le

回答

0

你可以試試下面的代碼嗎?

public void onReceive(Context context, Intent intent) { 
    ... 
    for(int i = 0; i < SetMyAlarm.countSeqWithDatabaseList.size(); i++) { 
     prescriptionString = SetMyAlarm.prescriptionList.get(i); 
     myNotification.acceptNotificationString(context, prescriptionString); 
    } 
    ... 
} 


public void acceptNotificationString(Context context, String text) { 
    sendNotification(context, text); 
} 

private void sendNotification(Context context, String text) { 
    try { 
     Intent notificationIntent = new Intent(context, MainActivity.class); 
     .... 
     PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, notificationIntent, flags); 
     ... 
     Notification notification = new Notification.Builder(context) 
     .... 
     NotificationManager manager = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE); 
    } 
} 
+0

我按照你所說的編輯了我的代碼,但現在我的NullPointerException在代碼'NotificationManager manager =(NotificationManager)getSystemService(NOTIFICATION_SERVICE);' –

+0

試試這個:NotificationManager manager =(NotificationManager)context.getSystemService(NOTIFICATION_SERVICE); – W0rmH0le

+0

謝謝你的工作。但是,請你解釋一下爲什麼我們必須這樣做? –