我正在使用 gcm 从我的服务器获取事件,这很好,但我想使用我的类 GCMIntentService 与其他活动进行通信
我有我的方法来接收消息
@Override
protected void onMessage(Context context, Intent intent) {
Log.d("GCM", "RECIEVED A MESSAGE");
// Get the data from intent and send to notificaion bar
generateNotification(context, intent);
}
我想例如将数据发送到我的 MainActivity 但我找不到我刚刚找到的方法:
Intent intent = new Intent(getBaseContext(), SignoutActivity.class);
intent.putExtra("EXTRA_SESSION_ID", sessionId);
startActivity(intent);
但就我而言,我不想开始一个新的活动,我只想将数据发送到正在运行的活动。
谢谢你的帮助