如何更改 ViewGroup 子项的文本颜色

How to change text color of ViewGroup's children

我可以更改 ViewGroup 子项的文本颜色而不是在每个子项上都更改吗?

就像在 CSS 中一样,当我将 div 中的颜色更改为红色时,其所有子项的颜色都会更改为红色。

就像您在活动中应用主题一样,您可以将自定义主题应用到 xml 布局中的视图

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:theme="@style/CustomTheme">

</RelativeLayout>