1

サンプルからgcmを正常に実装し、通知メッセージを受信できますが、バーからドラッグダウンすると、テキストの一部がタブに表示されます。

タブをクリックしてメッセージ全体を表示するときに(アラート)ダイアログを開く方法がわかりません。

誰?オランダからありがとう!

protected void onMessage(Context arg0, Intent arg1) {
Log.i(TAG, "new message= ");
String ticker=arg1.getExtras().getString("ticker");
String subject=arg1.getExtras().getString("subject");
String message=arg1.getExtras().getString("message");

Vibrator vibrator = (Vibrator) arg0.getSystemService(Context.VIBRATOR_SERVICE);
vibrator.vibrate(1000);

String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
int icon = R.drawable.ic_launcher;
CharSequence tickerText = ticker;
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
Context context = getApplicationContext();
CharSequence contentTitle = subject;
CharSequence contentText = message;
Intent notificationIntent = new Intent(this, FragmentActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
final int HELLO_ID = 1;
mNotificationManager.notify(HELLO_ID, notification);
4

1 に答える 1

0

PendingIntentSystemUIがパッケージの外部から開始できるものである必要があるため、クラスがマニフェストで宣言されていることを確認してください。

詳細については、通知ガイドをご覧ください。

于 2012-11-16T04:37:15.747 に答える