1

アプリに投稿された新しいデータについてユーザーに通知するために、Firebase 通知を使用しています。ここに示す例に従っています: https://github.com/firebase/quickstart-android/tree/master/messaging

とはいえ、私もユーザーに優先権を与えています。をチェックして通知を受け取ることを選択した場合にのみ、通知を受け取る必要がありCheckBoxPreferenceます。

CheckBoxPreferenceと もonPreferenceChangeListener正常に設定しました。CheckBox問題は、チェックが外されている場合でも、ユーザーが通知を受け取っていることです。

これが私がやったことですSettingsActivity

public class SettingsActivity extends PreferenceActivity {

    private AppCompatDelegate mDelegate;

    Preference myPref;

    boolean isChecked = true;

    private static final String TAG = "SettingsActivity";

    public static final String RECEIVE_NOTIFS = "receiveNotifications";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        getDelegate().installViewFactory();
        getDelegate().onCreate(savedInstanceState);
        super.onCreate(savedInstanceState);
        addPreferencesFromResource(R.xml.preferences);

        getSupportActionBar().setDisplayHomeAsUpEnabled(true);

        myPref = (CheckBoxPreference) findPreference(RECEIVE_NOTIFS);
        myPref.setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() {
            @Override
            public boolean onPreferenceChange(Preference preference, Object o) {
                isChecked = Boolean.valueOf(o.toString());
                if (isChecked) {
                    Toast.makeText(getBaseContext(), "Checked", Toast.LENGTH_SHORT).show();
                    if (getIntent().getExtras() != null) {
                        String remoteMessage = getIntent().getExtras().getString("remoteMessage");
                        sendNotification(remoteMessage);
                    } else {
                        Toast.makeText(getBaseContext(), "Error!", Toast.LENGTH_SHORT).show();
                    }
                } else {
                    Toast.makeText(getBaseContext(), "Unchecked", Toast.LENGTH_SHORT).show();
                }
                return true;
            }
        });

    }

    public void sendNotification(String messageBody) {
        Intent intent = new Intent(this, SettingsActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
                PendingIntent.FLAG_ONE_SHOT);

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

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
    }

CheckBoxPreference上記のコードで、がチェックされた場合にのみ通知を送信するように明確に指定しました。

MyFirebaseMessagingService.javaファイルのコードは次のとおりです。

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    private static final String TAG = "MyFirebaseMsgService";

    /**
     * Called when message is received.
     *
     * @param remoteMessage Object representing the message received from Firebase Cloud Messaging.
     */
    // [START receive_message]
    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        // TODO(developer): Handle FCM messages here.
        // If the application is in the foreground handle both data and notification messages here.
        // Also if you intend on generating your own notifications as a result of a received FCM
        // message, here is where that should be initiated. See sendNotification method below.
        Log.d(TAG, "From: " + remoteMessage.getFrom());
        Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());

        Intent intent = new Intent(this, SettingsActivity.class);
        intent.putExtra("remoteMessage", remoteMessage.getNotification().getBody());
        startActivity(intent);
    }
    // [END receive_message]

}

ここで行っているのはremoteMessage、Intent としてに送信し、メソッドでSettingsActivity使用することです。sendNotification()

したがって、明らかに私が望んでいるのは、ユーザーがCheckBoxPreference.

ここで何が間違っているのか教えてください。

4

1 に答える 1

2

Firebase Notifications を使用する場合、送信されるメッセージは通知メッセージです。アプリがフォアグラウンドにある場合、コードは通知を処理します。ただし、アプリがバックグラウンドになっている場合は、デフォルトの通知センターが処理します。また、通知センターはチェックボックスについて何も知らないため、常に通知が表示されます。

これまでに見た中で最も適切な説明については、クイックスタート リポジトリの問題に対するこの回答を参照してください。

ロジックを機能させるには、いくつかのオプションがあります。

  • ユーザーがチェックボックスをオンにしていない場合、通知を送信しません。したがって、表示を抑制する代わりに、単に送信しないでください。たとえば、オプトインしたユーザーのみがサブスクライブするトピックに送信できます。

  • 通知の代わりにデータ メッセージを送信します。これにより、アプリがバックグラウンドの場合でも、コードが常に呼び出されるようになります。通知とデータ メッセージの違いの詳細については、通知とメッセージ ペイロードのデータに関するドキュメントを参照してください。

関連する質問:

于 2016-06-11T23:47:20.430 に答える