如何更改android通知颜色和fontsize?

时间:2016-11-29 16:36:27

标签: android push-notification

浏览Android开发人员指南但似乎无法找到任何可以让我更改背景颜色,文字颜色和字体。

非常感谢任何对正确资源的帮助。

1 个答案:

答案 0 :(得分:0)

如果要更改应用程序的ui-elemnts,则可以自定义main.xml

<TextView
  android:id="@+id/text_view2"
  android:text="Font size 25dp or dip (Density-independent-Pixels)"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:textColor="#FF0000"
  android:textSize="25dp"
  />

代码来自此链接https://android--examples.blogspot.se/2015/01/textview-font-size-in-android.html

但是,如果您想在运行时更新ui,那么您最常向ui发送请求。 检查此帖子Updating Android UI using threads Franco和user634618对此都有很好的答案。