我有一个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);
我宁愿不使用外部库。