RemoteViews remoteViews = new RemoteViews(this.getPackageName(), "自定義通知佈局"); remoteViews.setTextViewText("TextView控件ID", "值");//能夠設置各類控件 Notification notification = new Notification(); notification.contentView = remoteViews;//設置佈局其餘與普統統知相同
如今手機各類主題,通知欄背景顏色各類,若是給通知佈局TextView設置固定字體顏色可能出現字體顏色和背景相同。
因此在設置TextView的字體顏色時要給系統顏色,而不是給固定值
android:textColor="@android :color/primary_text_light"這個錯了
android:textColor="?android:textColorPrimary"應該是這個java
版權聲明:本文爲博主原創文章,未經博主容許不得轉載。android