React-Native从通知中传递来自Java的数据

时间:2017-10-16 20:27:08

标签: java android react-native

我有一个Android服务,可以按特定时间间隔发出通知。我需要用户在点击通知后导航到某个页面。

这是我使用的配置。这确实打开了应用程序,但我无法弄清楚如何将数据发布到React-Native。

Bundle b = new Bundle();
b.putString("MyNameBundle", "Please Work");

final NotificationCompat.Builder builder =
                    new NotificationCompat.Builder(this).
                      setContentTitle("Sample Title").
                      setContentText("SampleText").
                      setSmallIcon(R.mipmap.notify);
                      setExtras(b);

Intent testIntent = new Intent(this, MainActivity.class);
testIntent.putExtras(b);

PendingIntent contentIntent = PendingIntent.getActivity(this, 0, testIntent, PendingIntent.FLAG_UPDATE_CURRENT);
builder.setContentIntent(contentIntent);

final NotificationManager nManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

我宁愿不使用外部库。

0 个答案:

没有答案