android.app.Notification

时间:2014-07-06 18:00:10   收藏:0   阅读:165
public Notification(int icon,
                       CharSequence tickerText,
                       long when)

Deprecated. Use Notification.Builder instead.------>使用Notification.Builder()
Constructs a Notification object with the information needed to have a status bar icon without the standard expanded view.

Notification noti = new Notification.Builder(mContext) .setContentTitle("New mail from " + sender.toString()) .setContentText(subject) .setSmallIcon(R.drawable.new_mail) .setLargeIcon(aBitmap) .build();

android.app.Notification,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!