通过单击通知下拉菜单中的选项卡打开(警报)对话框
Posted
技术标签:
【中文标题】通过单击通知下拉菜单中的选项卡打开(警报)对话框【英文标题】:Open (alert)dialog by clicking tab from notification drag-down 【发布时间】:2012-11-11 18:29:22 【问题描述】:我已从示例中成功实现 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);
【问题讨论】:
【参考方案1】:PendingIntent
必须是 SystemUI 可以从您的包外部启动的东西,因此请确保在您的清单中声明了该类。
更多信息可以在Notifications guide找到。
【讨论】:
以上是关于通过单击通知下拉菜单中的选项卡打开(警报)对话框的主要内容,如果未能解决你的问题,请参考以下文章