私はアンドロイドのアプリケーションで3つの活動があります。プッシュNotificaion常にスタートの主な活動意向
1. Main
2. Welcome
3. Articles
アプリのライフサイクルは、メインから始まり - >ようこそ - >記事を。私はアプリケーションでFirebase Cloud Messaging(FCM)を実装しました。そこから、WelcomeまたはArticlesアクティビティを開始したいと思います。コードは次のようになります:
private void createNote(String title, String body, String key) {
try {
Intent screen;
int code = key == null ? 0 : Integer.parseInt(key);
if (key == null) {
screen = new Intent(this, Welcome.class);
} else {
screen = new Intent(this, Articles.class);
screen.putExtra("key", key);
screen.putExtra("name", title);
}
screen.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
screen.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent intent = PendingIntent.getActivity(
this, 0, screen, PendingIntent.FLAG_CANCEL_CURRENT);
//
NotificationCompat.Builder notification = new NotificationCompat.Builder(this)
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
.setTicker(title + " has new Item")
.setSmallIcon(R.drawable.logo)
.setContentIntent(intent)
.setContentTitle(title)
.setContentText(body)
.setAutoCancel(true);
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.notify(code, notification.build());
} catch (Exception ex) {
ex.printStackTrace();
Log.e(TAG + "NOTE", ex.getMessage());
}
}
アプリケーションブロックをマニフェストファイルから
<application
android:allowBackup="true"
android:icon="@mipmap/logo"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<activity android:name=".infotropy.Main" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".infotropy.Welcome"
android:screenOrientation="portrait"
android:launchMode="singleInstance"/>
<activity android:name=".infotropy.Articles" android:screenOrientation="portrait"/>
</application>
私の問題であることのアクティビティクラスリファレンスはプッシュ通知をクリックした後、変数のホールドを画面に関係なく、常にメインアクティビティが開始されましたが、私は上記の機能のどこにも言及していません。
コードのいずれかを開始する必要がありはまたは記事活動を歓迎し、それは常にメインを活性化させます。解決策を教えてください。
編集:
尋ねたように、私は、FCMのプッシュ通知を処理するクラスのコードを共有しています:
public class Notify extends FirebaseMessagingService {
private final String TAG = "NOTIFY_";
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
//super.onMessageReceived(remoteMessage);
try {
String key = null;
Map data = remoteMessage.getData();
String body = remoteMessage.getNotification().getBody();
String title = remoteMessage.getNotification().getTitle();
Log.d(TAG, "From : " + remoteMessage.getFrom());
Log.d(TAG, "Body : " + body);
if (data.containsKey("key")) {
key = data.get("key").toString();
}
createNote(title, body, key);
} catch (Exception ex) {
ex.printStackTrace();
Log.e(TAG + "RECEIVER", ex.getMessage());
}
}
private void createNote(String title, String body, String key) {
try {
Intent screen;
int code = key == null ? 0 : Integer.parseInt(key);
if (key == null) {
screen = new Intent(this, Welcome.class);
} else {
screen = new Intent(this, Articles.class);
screen.putExtra("key", key);
screen.putExtra("name", title);
}
screen.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
screen.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
// Intent welcome = new Intent(this, Welcome.class);
// welcome.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent intent = PendingIntent.getActivity(
this, 0, screen,
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_ONE_SHOT);
//
NotificationCompat.Builder notification = new NotificationCompat.Builder(this)
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
.setTicker(title + " has new Item")
.setSmallIcon(R.drawable.logo)
.setContentIntent(intent)
.setContentTitle(title)
.setContentText(body)
.setAutoCancel(true);
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.notify(code, notification.build());
} catch (Exception ex) {
ex.printStackTrace();
Log.e(TAG + "NOTE", ex.getMessage());
}
}
}
@VihangaYasith。記事アクティビティには、サーバからの最新のデータを同期させるメカニズムがあるためです。したがって、プッシュ通知が記事を参照するように見える場合は、古いアクティビティはすべてクリアされ、記事はサーバーから最新のデータを同期するための新しいインスタンスを持ちます –
FCMメッセージハンドラの完全なコードを共有します。 –
@AGMTazim。私は完全なコードを追加しました。どうぞご覧ください –