ну, я понял, вам нужен новый 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();