2019年7月現在
Android compileSdkVersion 28、buildToolsVersion 28.0.3、firebase-messaging:19.0.1
他のすべてのStackOverflowの質問と回答を調査し、数え切れないほどの古いソリューションを試した後、このソリューションは次の3つのシナリオで通知を表示することができました。
-アプリがフォアグラウンドにある:
MyFirebaseMessagingServiceクラスのonMessageReceivedメソッドによって通知が受信されます
-アプリが強制終了されました(バックグラウンドで実行されていません):
FCMによって通知トレイに通知が自動的に送信されます。ユーザーが通知に触れると、マニフェストにandroid.intent.category.LAUNCHERがあるアクティビティを呼び出してアプリが起動します。onCreate()メソッドでgetIntent()。getExtras()を使用して、通知のデータ部分を取得できます。
-アプリはバックグラウンドです:
。通知はFCMによって通知トレイに自動的に送信されます。ユーザーが通知に触れると、マニフェストにandroid.intent.category.LAUNCHERがあるアクティビティを起動することにより、アプリが前面に表示されます。私のアプリはそのアクティビティにlaunchMode = "singleTop"があるため、同じクラスの1つのアクティビティがすでに作成されているため、onCreate()メソッドは呼び出されません。代わりに、そのクラスのonNewIntent()メソッドが呼び出され、 intent.getExtras()を使用して、そこに通知します。
手順:1-アプリのメインアクティビティを次のように定義した場合:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:largeHeap="true"
android:screenOrientation="portrait"
android:launchMode="singleTop">
<intent-filter>
<action android:name=".MainActivity" />
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
2- MainActivity.classのonCreate()メソッドにこれらの行を追加します
Intent i = getIntent();
Bundle extras = i.getExtras();
if (extras != null) {
for (String key : extras.keySet()) {
Object value = extras.get(key);
Log.d(Application.APPTAG, "Extras received at onCreate: Key: " + key + " Value: " + value);
}
String title = extras.getString("title");
String message = extras.getString("body");
if (message!=null && message.length()>0) {
getIntent().removeExtra("body");
showNotificationInADialog(title, message);
}
}
これらのメソッドを同じMainActivity.classに追加します。
@Override
public void onNewIntent(Intent intent){
//called when a new intent for this class is created.
// The main case is when the app was in background, a notification arrives to the tray, and the user touches the notification
super.onNewIntent(intent);
Log.d(Application.APPTAG, "onNewIntent - starting");
Bundle extras = intent.getExtras();
if (extras != null) {
for (String key : extras.keySet()) {
Object value = extras.get(key);
Log.d(Application.APPTAG, "Extras received at onNewIntent: Key: " + key + " Value: " + value);
}
String title = extras.getString("title");
String message = extras.getString("body");
if (message!=null && message.length()>0) {
getIntent().removeExtra("body");
showNotificationInADialog(title, message);
}
}
}
private void showNotificationInADialog(String title, String message) {
// show a dialog with the provided title and message
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(title);
builder.setMessage(message);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
}
3-次のようにMyFirebaseクラスを作成します。
package com.yourcompany.app;
import android.content.Intent;
import android.util.Log;
import com.google.firebase.messaging.FirebaseMessagingService;
import com.google.firebase.messaging.RemoteMessage;
public class MyFirebaseMessagingService extends FirebaseMessagingService {
public MyFirebaseMessagingService() {
super();
}
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d(Application.APPTAG, "myFirebaseMessagingService - onMessageReceived - message: " + remoteMessage);
Intent dialogIntent = new Intent(this, NotificationActivity.class);
dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
dialogIntent.putExtra("msg", remoteMessage);
startActivity(dialogIntent);
}
}
4-次のような新しいクラスNotificationActivity.classを作成します。
package com.yourcompany.app;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.util.Log;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.view.ContextThemeWrapper;
import com.google.firebase.messaging.RemoteMessage;
public class NotificationActivity extends AppCompatActivity {
private Activity context;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
context = this;
Bundle extras = getIntent().getExtras();
Log.d(Application.APPTAG, "NotificationActivity - onCreate - extras: " + extras);
if (extras == null) {
context.finish();
return;
}
RemoteMessage msg = (RemoteMessage) extras.get("msg");
if (msg == null) {
context.finish();
return;
}
RemoteMessage.Notification notification = msg.getNotification();
if (notification == null) {
context.finish();
return;
}
String dialogMessage;
try {
dialogMessage = notification.getBody();
} catch (Exception e){
context.finish();
return;
}
String dialogTitle = notification.getTitle();
if (dialogTitle == null || dialogTitle.length() == 0) {
dialogTitle = "";
}
AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(context, R.style.myDialog));
builder.setTitle(dialogTitle);
builder.setMessage(dialogMessage);
builder.setPositiveButton(getResources().getString(R.string.accept), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
}
}
5-これらの行をタグ内のアプリマニフェストに追加します
<service
android:name=".MyFirebaseMessagingService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<meta-data android:name="com.google.firebase.messaging.default_notification_channel_id" android:value="@string/default_notification_channel_id"/>
<activity android:name=".NotificationActivity"
android:theme="@style/myDialog"> </activity>
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/notification_icon"/>
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/color_accent" />
6- Application.java onCreate()メソッドまたはMainActivity.class onCreate()メソッドに次の行を追加します。
// notifications channel creation
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
// Create channel to show notifications.
String channelId = getResources().getString("default_channel_id");
String channelName = getResources().getString("General announcements");
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(new NotificationChannel(channelId,
channelName, NotificationManager.IMPORTANCE_LOW));
}
できました。
これが上記の3つのシナリオで適切に機能するためには、Firebaseウェブコンソールから次の方法で通知を送信する必要があります。
通知セクション:通知タイトル=通知ダイアログに表示するタイトル(オプション)通知テキスト=ユーザーに表示するメッセージ(必須)次に、ターゲットセクション:App = Androidアプリおよび追加オプションセクション:Android通知チャネル= default_channel_idカスタムデータキー:タイトル値:(ここに、通知セクションの[タイトル]フィールドと同じテキスト)キー:本文値:(ここに、通知セクションの[メッセージ]フィールドと同じテキスト)key:click_action値:.MainActivity Sound =無効
期限= 4週間
Google PlayのAPI 28を使用してエミュレータでデバッグできます。
幸せなコーディング!
Not getting messages here? See why this may be: goo.gl/39bRNJ
。以下の回答のような解決策は、通知とデータペイロードの両方を含むメッセージ