我正在尝试实现推送通知客户端。我想在 onMessage(Context arg0, Intent arg1) 函数中显示祝酒词。
这是我的代码:
public class GCMIntentService extends GCMBaseIntentService {
static Context c;
@SuppressWarnings("hiding")
private static final String TAG = "GCMIntentService";
public GCMIntentService() {
super("717816998404");
c = this.getBaseContext();
}
/**
* Issues a notification to inform the user that server has sent a message.
*/
@Override
protected void onError(Context arg0, String arg1) {
// TODO Auto-generated method stub
}
@Override
protected void onMessage(Context arg0, Intent arg1) {
Log.d("GCM", "RECIEVED A MESSAGE");
Log.d("GCM", "RECIEVED A MESSAGE");
Log.d("GCM", "RECIEVED A MESSAGE");
Log.d("GCM", "RECIEVED A MESSAGE");
Log.d("GCM", "RECIEVED A MESSAGE");
Log.d("GCM", "RECIEVED A MESSAGE");
Log.d("GCM", "RECIEVED A MESSAGE");
String str =arg1.getExtras().getString("PVAL");
Log.i("PVAL",str);
// I want to display a toast here
}
@Override
protected void onRegistered(Context arg0, String arg1) {
// TODO Auto-generated method stub
Log.i("TEST", arg1);
Log.e("TEST", arg1);
}
@Override
protected void onUnregistered(Context arg0, String arg1) {
// TODO Auto-generated method stub
}
}
我想知道如何显示收到的消息我试图显示一个 toast 来检查消息。