我正在开发Android应用程序。我需要为应用创建通知。 我可以使用以下方法成功创建它:
http://www.tutorialspoint.com/android/android_notifications.htm
我知道NotificationCompat.Builder setNumber(int Number)。它设置右侧通知的编号。但我想要显示一个小图标,而不是数字。 我是否需要使用自定义布局,因为我无法找到任何API。 我该怎么做。
答案 0 :(得分:0)
要在通知的右下角显示图片,我们必须使用以下API
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(baseContext).setLargeIcon(large_icon)
.setSmallIcon(small_icon);
对于运行Android Kitkat的设备,setLargeIcon
设置左端的图像,而setSmallIcon
设置通知右下角的图像。
对于运行高于Kitkat的设备
setLargeIcon
将图像设置在左端,而setSmallIcon
则将图像设置在大图像的右下端。