как добавить картинку на панель уведомлений в Ice Cream Sandwich - PullRequest
2 голосов
/ 15 февраля 2012

Как поместить это изображение http://1.androidauthority.com/wp-content/uploads/2011/10/ics-notifications.jpg) в панель уведомлений?

Ответы [ 2 ]

0 голосов
/ 12 сентября 2012

ну, я понял, вам нужен новый API для Android 3.0+, новое уведомление, вы можете настроить любой оттягиваемый:)

 Notification noti = new Notification.Builder(mContext)
     .setContentTitle("New mail from " + sender.toString())
     .setContentText(subject)
     .setSmallIcon(R.drawable.new_mail)
     .setLargeIcon(aBitmap)
     .build();
0 голосов
/ 15 февраля 2012
Notification notif = new Notification(R.drawable.stat_sample, tickerText,
            System.currentTimeMillis());

Где R.drawable.stat_sample указывает на ваше изображение.

Подробнее здесь: http://developer.android.com/guide/topics/ui/notifiers/notifications.html

...