Android Drawables是一個網站,列出了很多可用於Android的內置圖標。如何使用Android Drawables中的圖標作爲通知圖標?
如果我想使用其中之一,例如emo_im_angel
作爲通知圖標,我該怎麼做?
例如:
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(XXX)
.setContentTitle("My notification")
.setContentText("Hello World!");
什麼代替XXX
去使用emo_im_angel
什麼,我需要做什麼?
但這些應該是*內置*。我仍然必須有一個單獨的副本? – wopwop