web-dev-qa-db-ja.com

Firebase(FCM):通知クリックでアクティビティを開き、データを渡します。 android

Firebaseの通知とデータを操作する方法の明確な実装が必要です。私は多くの答えを読みましたが、うまくいかないようです。私の手順は次のとおりです。

1.)AndroidのPHPに通知とデータを渡していますが、問題ないようです:

$msg = array
    (
         "body" => $body,
         "title" => $title,
         "sound" => "mySound"
    );

    $data = array
    (

         "user_id" => $res_id,
         "date" => $date,
         "hal_id" => $hal_id,
         "M_view" => $M_view
    );

    $fields = array
    (
        'registration_ids' => $registrationIds,
        'notification' => $msg,
        'data' => $data
    );



    $headers = array
    (
        'Authorization: key='.API_ACCESS_KEY,
        'Content-Type: application/json'
    );

    $ch = curl_init();
    curl_setopt( $ch,CURLOPT_URL, 'https://Android.googleapis.com/gcm/send' );
    curl_setopt( $ch,CURLOPT_POST, true );
    curl_setopt( $ch,CURLOPT_HTTPHEADER, $headers );
    curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true );
    curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
    curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fields ) );
    $result = curl_exec($ch );
    curl_close( $ch );

2.)Androidで通知とデータを受信すると、通知が表示されます。この通知をクリックすると、アプリが開きます。しかし、アプリを開いたときにデータを処理する方法がわかりません。アプリがフォアグラウンドとバックグラウンドにある場合、いくつかの違いがあります。私が今持っているコードは次のとおりです。

public class MyFirebaseMessagingService extends FirebaseMessagingService {

private static final String TAG = "MyFirebaseMsgService";

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {

    String user_id = "0";
    String date = "0";
    String cal_id = "0";
    String M_view = "0";

    if (remoteMessage.getData().size() > 0) {
        Log.d(TAG, "Message data payload: " + remoteMessage.getData());
        user_id = remoteMessage.getData().get("user_id");
        date = remoteMessage.getData().get("date");
        hal_id = remoteMessage.getData().get("hal_id");
        M_view = remoteMessage.getData().get("M_view");
    }

    //Calling method to generate notification
    sendNotification(remoteMessage.getNotification().getBody(), user_id, date, hal_id, M_view);
}

private void sendNotification(String messageBody, String user_id, String date, String hal_id, String M_view) {
    Intent intent = new Intent(this, MainActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);

    intent.putExtra("fcm_notification", "Y");
    intent.putExtra("user_id", user_id);
    intent.putExtra("date", date);
    intent.putExtra("hal_id", hal_id);
    intent.putExtra("M_view", M_view);
    int uniqueInt = (int) (System.currentTimeMillis() & 0xff);
    PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(), uniqueInt, intent,
            PendingIntent.FLAG_UPDATE_CURRENT);

    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this);
    notificationBuilder.setSmallIcon(R.drawable.ic_launcher)
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);

    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(0, notificationBuilder.build());
}}

3.)上記のコードを使用し、通知をクリックすると、バックグラウンドでアプリが開きます。アプリがフォアグラウンドにある場合、通知をクリックすると、単に通知が消えます。ただし、両方のシナリオ(バックグラウンドとフォアグラウンド)でデータを受信し、特定のアクティビティを開きたいです。 MainActivityに次のコードがありますが、データを取得できません。 fcm_notification、date、hal_idはnullを返します。

public class MainActivity extends Activity {
 UserFunctions userFunctions;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    setIntent(intent);
    Intent intent_o = getIntent();
}

@Override
protected void onResume() {
    super.onResume();
    userFunctions = new UserFunctions();
    if(userFunctions.isUserLoggedIn(getApplicationContext())){
        Intent intent_o = getIntent();
        String fcm_notification = intent_o.getStringExtra("fcm_notification") ;
        String user_id = intent_o.getStringExtra("user_id");
        String date = intent_o.getStringExtra("date");
        String hal_id = intent_o.getStringExtra("hal_id");
        String M_view = intent_o.getStringExtra("M_view");
        Intent intent = new Intent(this, JobList.class);

        // THIS RETURNS NULL, user_id = null
        System.out.print("FCM" + user_id);
        startActivity(intent);
        finish();
    }else{
        // user is not logged in show login screen
        Intent login = new Intent(this, LoginActivity.class);
        startActivity(login);
        // Closing dashboard screen
        finish();
    }
}}

いずれかのシナリオ(フォアグラウンドまたはバックグラウンド)でFirebaseからMainActivity.Javaのデータを取得する方法を教えたりアドバイスしたりできれば、それは素晴らしいことです。

38
Vaidas

すべての答えとブログを試した後、解決策を思い付きました。誰かが必要な場合は、このビデオを参考にしてください

https://www.youtube.com/watch?v=hi8IPLNq59o

ビデオに加えて、MyFirebaseMessagingServiceでインテントを追加します。

public class MyFirebaseMessagingService extends FirebaseMessagingService {

private static final String TAG = "MyFirebaseMsgService";

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {

    String user_id = "0";
    String date = "0";
    String hal_id = "0";
    String M_view = "0";

    if (remoteMessage.getData().size() > 0) {
        Log.d(TAG, "Message data payload: " + remoteMessage.getData());
        user_id = remoteMessage.getData().get("user_id");
        date = remoteMessage.getData().get("date");
        cal_id = remoteMessage.getData().get("hal_id");
        M_view = remoteMessage.getData().get("M_view");
    }

    String click_action = remoteMessage.getNotification().getClickAction();

    //Calling method to generate notification
    sendNotification(remoteMessage.getNotification().getBody(), remoteMessage.getNotification().getTitle(), user_id, date, hal_id, M_view, click_action);
}

private void sendNotification(String messageBody, String messageTitle, String user_id, String date, String hal_id, String M_view, String click_action) {
    Intent intent = new Intent(click_action);
    intent.putExtra("user_id", user_id);
    intent.putExtra("date", date);
    intent.putExtra("hal_id", hal_id);
    intent.putExtra("M_view", M_view);

    PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent,
            PendingIntent.FLAG_ONE_SHOT);

    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this);
    notificationBuilder.setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle(messageTitle)
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);

    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(0, notificationBuilder.build());
}}

onCreateまたはonResumeの新しいNotificationReceiveアクティビティにこれを追加します

    notification_Y_N = (TextView) findViewById(R.id.notification_Y_N);
    user_id_text = (TextView) findViewById(R.id.user_id_text);

    Intent intent_o = getIntent();
    String user_id = intent_o.getStringExtra("user_id");
    String date = intent_o.getStringExtra("date");
    String hal_id = intent_o.getStringExtra("hal_id");
    String M_view = intent_o.getStringExtra("M_view");

    notification_Y_N.setText(date);
    user_id_text.setText(hal_id);
21
Vaidas

最初に、 メッセージの処理ドキュメント に記載されている詳細を入力します。

Both行の下の要約では、アプリがオンのときにforegroundでペイロードが処理されることを示していますあなたのonMessageReceived()

onMessageReceived()からアクティビティを開くには、必要なデータがペイロードにあるかどうかを確認する必要があります。ペイロードにある場合は、特定のアクティビティを呼び出し、必要な他のすべての詳細をインテント経由で渡します。

アプリがbackgroundにある場合、ドキュメントでは、通知がAndroidシステムトレイによって受信され、dataペイロードを取得できることが記載されています意図のエクストラ

私の答えから詳細を追加するだけです here これは、ドキュメントステートメントとサンプルへのリンクを提供するだけです:

バックグラウンドアプリで通知メッセージを処理する

アプリがバックグラウンドにあるとき、Androidは通知メッセージをシステムトレイに送ります。ユーザーが通知をタップすると、デフォルトでアプリランチャーが開きます。

これには、通知とデータペイロードの両方(および通知コンソールから送信されるすべてのメッセージ)を含むメッセージが含まれます。これらの場合、通知はデバイスのシステムトレイに配信され、データペイロードはランチャーアクティビティのインテントの追加で配信されます。

私はこれを answer @ArthurThompsonが非常によく説明していると思う:

データペイロード(通知とデータ)を含む通知メッセージを送信し、アプリがバックグラウンドにある場合、ユーザーが通知をタップした結果として起動されるインテントのエキストラからデータを取得できます。

通知がタップされたときにMainActivityを起動する FCMサンプル から:

if (getIntent().getExtras() != null) {
    for (String key : getIntent().getExtras().keySet()) {
        String value = getIntent().getExtras().getString(key);
        Log.d(TAG, "Key: " + key + " Value: " + value);
    }
}
34
AL.

onMessageReceived()メソッドを呼び出すには、別のメソッドを使用して通知を送信する必要があります(通知を送信するWeb APIを作成するなど)。それを使用して、

データペイロードをonMessageReceived()メソッドに配信するために、FCMメッセージから通知ペイロードを削除します

アプリがバックグラウンドにある場合、データペイロードは、通知ペイロードがない場合にのみonMessageReceivedメソッドに配信されます。

両方のペイロードが存在する場合、システムは通知部分(システムトレイ)を自動的に処理し、アプリは(ユーザーが通知をタップした後)ランチャーアクティビティのインテントの追加でデータペイロードを取得します。

詳細については、次のリンクを参照してください。

3
Ashu

sendNotificationおよびonMessageReceivedを自分で実装する必要はありません。

送信する場合:

$data = array
(
    "user_id" => $res_id
    //whatever fields you want to include
);

$msg = array
(
     "body" => $body,
     "title" => $title,
     "data" => $data
     // more fields
);

Android側(あなたのMainACtivity

private void handleIntent(Intent intent) {
    String user_id= intent.getStringExtra("user_id");
    if(user_id!= null)
        Log.d(TAG, user_id);
}

そしてもちろん:

@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    handleIntent(intent);
}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    handleIntent(getIntent());
}

dataに入力したフィールドは、意図extraに送信されます。

0
Ohad Cohen