在背景上开始活动

时间:2017-06-20 10:12:46

标签: android android-activity react-native push-notification

我正在开发一个webrtc Android react原生应用,它允许用户拨打/接听电话。当应用程序被杀死时,用户会收到启动应用程序的静默通知(来电)。我很喜欢这种行为,我只想在后台启动活动,只在完全加载时向用户显示。

我正在使用react-native-fcm,这段代码在通知到达时启动应用程序。

public void onMessageReceived(RemoteMessage remoteMessage) {

    Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.myAppName");
      if (launchIntent != null) {
        startActivity(launchIntent);
      }
    }

1 个答案:

答案 0 :(得分:0)