gpt4 book ai didi

android - 在 Android 中单击 FCM 通知后打开 Activity

转载 作者:搜寻专家 更新时间:2023-11-01 08:27:38 25 4
gpt4 key购买 nike

我知道有很多这样的帖子,但我尝试了很多解决方案,但没有一个对我有用。

我正在使用 Firebase 云消息传递来发送通知。通知到达,但它打开了主要 Activity ,而不是我想要的 Activity 。

我试了又试,但在开始适当的 Activity 时总是失败。尝试了不同的 Intent 或 PendingIntent 设置,尝试了 click_action,对我来说没有任何效果。

我认为它甚至没有进入我的 FirebaseMessagingService,但我按照 Firebase 指令执行了所有操作。

list :

  <service
android:name="com.packagename.FirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>

<activity android:name="com.packagename.NotificationActivity">
<action android:name="OPEN_ACTIVITY_1" />
<category android:name="android.intent.category.DEFAULT" />
</activity>

FirebaseMessagingService:

    public class FirebaseMessagingService extends FirebaseMessagingService {

private static String TAG = "Firebase";

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {

Log.d(TAG, "From: " + remoteMessage.getFrom());
if (remoteMessage.getData().size() > 0) {
Log.d(TAG, "Message data payload: " + remoteMessage.getData());
}


if(remoteMessage.getNotification()!=null){
Log.d(TAG,"Message body : "+remoteMessage.getNotification().getBody());
sendNotification(remoteMessage.getNotification().getBody(), remoteMessage.getNotification().getTitle());
}
}

private void sendNotification(String body, String title) {
Intent notificationIntent = new Intent(this, NotificationActivity.class);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
notificationIntent.putExtra("notification", body);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT);

NotificationCompat.Builder notification =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification)
.setContentTitle(getString(R.string.app_name))
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(body)
.setBigContentTitle(title))
.setContentText(body)
.setContentIntent(pendingIntent)
.setAutoCancel(true)
.setDefaults(NotificationCompat.DEFAULT_SOUND);

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

点击后的日志:

D/StatusBar: Clicked on content of 0|com.mypackagename|0|GCM-Notification:89893881|10177 , PendingIntent{cc15013: android.os.BinderProxy@e3031fc} , Intent { act=com.google.firebase.MESSAGING_EVENT cmp=com.mypackagename/com.google.firebase.iid.FirebaseInstanceIdInternalReceiver (has extras) }

最佳答案

如果应用程序在后台,通知会定向到系统托盘。

点击通知后,它将重定向到 list 文件中给出的启动器 Activity 。

我们可以从启动器 Activity 中调用任何 Activity ,但首先它将转到启动器 Activity 。

在 Launcher activity 中我们可以获得通知消息内容。

AndroidManifest.xml

 <activity

android:name=".view.SplashActivity"

android:screenOrientation="portrait">

<intent-filter>

<action android:name="android.intent.action.MAIN" />



<category android:name="android.intent.category.LAUNCHER" />

</intent-filter>

</activity>

SplashActivity.Java

public class SplashActivity extends AppCompatActivity {



@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
Bundle bundle = getIntent().getExtras();

if (bundle != null && bundle.get("data")!=null) {


//here can get notification message
String datas = bundle.get("data").toString();

}
}
}

关于android - 在 Android 中单击 FCM 通知后打开 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43263724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com