gpt4 book ai didi

android - 在 Android 中,当扩展 FirebaseMessagingService 调用 onMessageReceived 时如何获取当前 Activity 上下文?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:06:16 25 4
gpt4 key购买 nike

我的集成 FCM 代码..我想在推送到达时获取当前 Activity 上下文。用于根据上下文转换监听器的目的。

代码 fragment 在这里...

public class MyFirebaseMessagingService extends FirebaseMessagingService {

private static final String TAG = "MyFMService";
private NotificationListener notificationListener;
private Context context;
private int count=0;

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d(TAG, "FCM Message Id: " + remoteMessage.getMessageId());

RemoteMessage.Notification notification = remoteMessage.getNotification();
Map<String, String> data = remoteMessage.getData();
Log.e("FROM", remoteMessage.getFrom());

count++;

//sendNotification(notification, data);

setNotificationCount();
}


private void setNotificationCount(AlertList alertList) {
notificationListener = (NotificationListener) context;
notificationListener.onNotificationMessage(count);
}

private void sendNotification(RemoteMessage.Notification notification, Map<String, String> data) {
Bitmap icon = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);

Intent intent = new Intent(this, AlertOnMap.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra("AlertDetails", (Serializable) alertList);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);

NotificationCompat.Builder notificationBuilder = (NotificationCompat.Builder) new NotificationCompat.Builder(this)
.setContentTitle(notification.getTitle())
.setContentText(notification.getBody())
.setAutoCancel(true)
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
.setContentIntent(pendingIntent)
.setContentInfo(notification.getTitle())
.setLargeIcon(icon)
.setColor(Color.RED)
.setSmallIcon(R.mipmap.ic_launcher);

try {
String picture_url = data.get("picture_url");
if (picture_url != null && !"".equals(picture_url)) {
URL url = new URL(picture_url);
Bitmap bigPicture = BitmapFactory.decodeStream(url.openConnection().getInputStream());
notificationBuilder.setStyle(
new NotificationCompat.BigPictureStyle().bigPicture(bigPicture).setSummaryText(notification.getBody())
);
}
} catch (IOException e) {
e.printStackTrace();
}

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

创建界面

public interface NotificationListener {

public void onNotificationMessage(AlertList alertList, int i);

调用另一个类..like

public class Header extends AppCompatActivity implements NotificationListener{

/*--------------- OnNotification ----------------------*/

@Override
public void onNotificationMessage(final int count) {

Log.d("Notification count", "---> In Header Count = " + count);

}

我想获取服务中的当前 Activity 上下文,而不需要来自其他类的任何上下文引用。

最佳答案

如果我没理解错的话,基本上你想将 Activity 的上下文转换为 Activity 实现的接口(interface)。问题是:您无法获取当前 Activity 上下文,因为可能/可能根本没有当前 Activity 。有一些上下文可用,但此上下文不能用于您想要的内容。让我解释一下:

假设用户有一周没有使用应用程序,他完成了所有 Activity ,退出了应用程序(或者操作系统释放了内存并清理了所有内容)。服务仍在后台运行,当推送消息到来时,它会根据您的代码使用react(假设您想要立即显示通知)。如果此时您需要上下文,例如通知图标颜色,您可以使用以下上下文:

int color = ContextCompat.getColor(getApplicationContext(), R.color.colorAccent);

getApplicationContext() 将为您提供所需的上下文,但这当然不是 Activity 上下文,因为仍然没有 Activity (所有 Activity 都在几天前完成)

希望这个解释有助于理解这里的概念。为了更好地理解存在什么样的上下文,请检查 Context, What Context?

关于android - 在 Android 中,当扩展 FirebaseMessagingService 调用 onMessageReceived 时如何获取当前 Activity 上下文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39466450/

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