我在我的應用程序中有一個通知。 但是,在不同的活動中,我會在通知欄中顯示不同的圖標。 我只是想知道如何在語法上寫這個。使用變量代替R.drawable
Notification notification = new Notification.Builder(this)
.setSmallIcon(R.drawable.card_red)
.setWhen(System.currentTimeMillis()).setTicker(message)
.setContentTitle("Real Madrid 2:1 Barcelona")
.setContentText(message).setContentIntent(pIntent)
.getNotification();
我具有被保持事件類型的變量 - 事件= 5; if(event == 5)icon = card_red; 我必須將該圖標變量放入通知創建者。
謝謝!我只是在Java世界中很新穎。 –