Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/371.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Android通知无法访问收到的字符串_Java_Android_Broadcastreceiver - Fatal编程技术网

Java Android通知无法访问收到的字符串

Java Android通知无法访问收到的字符串,java,android,broadcastreceiver,Java,Android,Broadcastreceiver,我在广播接收器中收到通知,如MainActivity.java中所示。我需要为我的其他类访问此字符串textMessage: if (intent.getAction().equals("NOTIFY_TEXT_MESSAGE")){ String textMessage = intent.getStringExtra("TextMessage"); Intent noti_intent = new Intent(MainActiv

我在广播接收器中收到通知,如
MainActivity.java
中所示。我需要为我的其他类访问此字符串
textMessage

if (intent.getAction().equals("NOTIFY_TEXT_MESSAGE")){
                String textMessage = intent.getStringExtra("TextMessage");
                Intent noti_intent = new Intent(MainActivity.this, NotificationReceiver.class);
                noti_intent.setAction("NotificationReceived");
                noti_intent.putExtra("NotificationMessage",textMessage);

                PendingIntent pi = PendingIntent.getBroadcast(MainActivity.this, 0, noti_intent, PendingIntent.FLAG_UPDATE_CURRENT);

                Uri soundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
                NotificationCompat.Builder builder =
                        new NotificationCompat.Builder(MainActivity.this)
                                .setSmallIcon(R.drawable.text_messages)
                                .setContentTitle(getResources().getString(R.string.Message_Title))
                                .setContentText(textMessage)
                                .setDefaults(Notification.DEFAULT_ALL) // must requires VIBRATE permission
                                .setPriority(NotificationCompat.PRIORITY_HIGH) //must give priority to High, Max which will considered as heads-up notification
                                .addAction(0,
                                        getString(R.string.Open), pi)
                                .setAutoCancel(true);
                builder.setSound(soundUri);
                NotificationManager notificationManager =
                        (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
                notificationManager.notify(0, builder.build());
            }
在NotificationReceiver.class中

public class NotificationReceiver extends BroadcastReceiver{

    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();

        if("NotificationReceived".equals(action)) {
            String msg = MainActivity.NotificationMessage;
            Log.v("shuffTest","msg" + msg);
        }
    }
}
在我的舱单上

<receiver android:name="com.example.NotificationReceiver">
            <intent-filter>
                <action android:name="NotificationReceived" />
            </intent-filter>
        </receiver>


为什么日志
msg
没有出现。我的代码中有什么错误?

尝试从意图中获取信息,如下所示:

public class NotificationReceiver extends BroadcastReceiver{

    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();

        if("NotificationReceived".equals(action)) {
            String msg = intent.getStringExtra("NotificationMessage");
            Log.v("shuffTest","msg" + msg);
        }
    }
}

还是一样的问题吗