0

さて、ここで問題が発生しました...通知を介してWebブラウザを起動します。
これが私が持っているものです:

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);

ですから、私には問題ないように思えますが、それでも...私は「サービスを開始できません」という素晴らしい問題を抱えています。

このサービスは私が作成したものではなく、Googleのサービスであるため、これを解決する方法が本当にわかりません。

ありがとう !

4

1 に答える 1

3

使用する

PendingIntent.getActivity 

それ以外の

PendingIntent.getService
于 2012-08-28T14:14:42.423 に答える