Ожидание намерения не запускается - PullRequest
3 голосов
/ 06 сентября 2011

У меня есть действие, которое создает уведомление. Уведомление запускает PendingIntent очень хорошо, когда я использую эмулятор and AVD (для Android 2.1 обновление 1), но не запускается вообще на реальном устройстве (под управлением Android 2.2.1). Есть что-то фундаментальное, чего мне не хватает?

1 Ответ

1 голос
/ 06 сентября 2011

у вас нет ни одного кода. Поэтому я делюсь своим кодом, который работал для меня:

public static void notifyIcon(Context context){

NotificationManager notifier = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(R.drawable.your_app_notification, "", System.currentTimeMillis());

/**
*Setting these flags will stop clearing your icon
*from the status bar if the user does clear all 
*notifications.
*/
    notification.flags |= Notification.FLAG_NO_CLEAR | Notification.FLAG_ONGOING_EVENT;
    RemoteViews contentView = new RemoteViews(context.getPackageName(), R.layout.custom_notification_layout);
    notification.contentView = contentView;

//If you want to open any activity on the click of the icon.

    Intent notificationIntent = new Intent(context, YourActivity.class);
    PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
    notification.contentIntent = contentIntent;

    notification.setLatestEventInfo(context, "title", null, contentIntent);
    notifier.notify(1, notification);

//To cancel the icon ...
    notifier.cancel(1);

}

Вот custom_notification_layout.xml

<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="3dp" >

</LinearLayout>

Примечание. Не забывайте очищать значок приложения, если это необходимо, если вы установили флаг выше.

...