2014-11-06 85 views
3

我想在可穿戴設備中設置通知的背景顏色。我發現的唯一方法是setBackground(位圖背景)NotificationCompat.WearableExtender但這隻適用於位圖。創建一個位圖矩形並將其用作通知的背景是一個好主意嗎? 任何幫助,將不勝感激。設置可穿戴通知的背景顏色

回答

0

使用NotificationCompat.Builder,在這一個中,您可以使用setColor並使用.extend()方法將其添加到NotificationCompat.WearableExtender。像這樣:

NotificationCompat.Builder builder = new NotificationCompat.Builder(this); builder.setSmallIcon(R.drawable.ic_launcher); builder.setContentTitle("Title"); builder.setColor(COLOR HERE); NotificationCompat.WearableExtender builderExtended = new NotificationCompat.WearableExtender(); builderExtended.extend(builder); builder.build();