0

好吧,我这里有个问题……我愿意通过通知启动网络浏览器。
这是我所拥有的:

notifIntent = new Intent(Intent.ACTION_VIEW);
                Uri u = Uri.parse("http://www.google.com");
                notifIntent.setData(u);
                pendingIntent = PendingIntent.getService(context, 0, notifIntent, PendingIntent.FLAG_UPDATE_CURRENT);
                notification = buildNotification(context, pendingIntent, "MY TITEL",
                        "Heres some text", false, false);
                notificationManager.notify(NOTIF_ID, notification);

所以,对我来说似乎没问题,但仍然......我有一个荒谬的“无法开始服务等等等等。”

我真的不知道如何解决这个问题,因为这个服务是谷歌服务,不是我创建的!

谢谢 !

4

1 回答 1

3

利用

PendingIntent.getActivity 

代替

PendingIntent.getService
于 2012-08-28T14:14:42.423 回答