在可穿戴通知中将位图设置为内容图标

时间:2015-01-13 12:11:18

标签: android android-notifications wear-os

我使用下面的代码在磨损中生成通知。

new Notification.WearableExtender()
.setBackground(BitmapFactory.decodeResource(context.getResources(), R.drawable.example_big_picture))
                     .setContentIcon(R.drawable.image)
                     .setContentIconGravity(Gravity.START)) 

setContentIcon可用于仅设置可绘制图像。有没有办法将bitmap设置为内容图标(我从服务器获取位图)。或者还有其他方法可以达到相同的效果吗?任何帮助,将不胜感激。提前谢谢。

enter image description here

1 个答案:

答案 0 :(得分:0)

将位图转换为可绘制的

Drawable d = new BitmapDrawable(getResources(),bitmaphere);