android 如何在通知的右侧显示图像
How to show image on the right hand side of the notification in android
我正在处理 android 申请。我需要为应用程序创建通知。
我能够使用 :
成功创建它
http://www.tutorialspoint.com/android/android_notifications.htm
我知道 NotificationCompat.Builder setNumber(int Number) 。它在右侧的通知上设置数字。但是我想显示一个小图标而不是数字。
我是否需要使用自定义布局,因为我无法为此找到任何 API。
我该怎么做。
要在通知的右下角显示图片,我们必须使用以下 API
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(baseContext).setLargeIcon(large_icon)
.setSmallIcon(small_icon);
对于 运行 至 android Kitkat 的设备,setLargeIcon
将图像设置在左端,而 setSmallIcon
将图像设置在右下端通知。
对于设备 运行 高于 Kitkat
setLargeIcon
将图像设置在左端,而 setSmallIcon
将图像设置在大图像的右下端。
我正在处理 android 申请。我需要为应用程序创建通知。 我能够使用 :
成功创建它http://www.tutorialspoint.com/android/android_notifications.htm
我知道 NotificationCompat.Builder setNumber(int Number) 。它在右侧的通知上设置数字。但是我想显示一个小图标而不是数字。 我是否需要使用自定义布局,因为我无法为此找到任何 API。 我该怎么做。
要在通知的右下角显示图片,我们必须使用以下 API
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(baseContext).setLargeIcon(large_icon)
.setSmallIcon(small_icon);
对于 运行 至 android Kitkat 的设备,setLargeIcon
将图像设置在左端,而 setSmallIcon
将图像设置在右下端通知。
对于设备 运行 高于 Kitkat
setLargeIcon
将图像设置在左端,而 setSmallIcon
将图像设置在大图像的右下端。