升级最新的安卓SDK(Android-SDK@1.9.9.28326_20161227),个推推送的离线消息,标题和时间是白色的,请问如何更改离线通知标题的颜色呢,谢谢!
之前版本的SDK,离线通知标题都是黑色的,这次升级变成白色的了。
豆花饭 (作者)
更改custom_notification.xml,增加android:textColor="#000000",重新打包不管用
<TextView
android:id="@+id/title"
style="@style/NotificationTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:ellipsize="end"
android:textColor="#000000"
android:maxLines="1" />
<TextView
android:id="@+id/time"
style="@style/NotificationText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:textColor="#000000"
android:layout_marginRight="5dip" />