如果您在引用的文本下方阅读:
要为应用程序的所有活动设置主题,请打开 AndroidManifest.xml 文件并编辑标签以包含带有样式名称的 android:theme 属性
如果您希望将主题应用于应用程序中的一个 Activity,则将 android:theme 属性添加到标签中。
稍后,它描述了如何继承和覆盖属性,就像 CSS 一样:
如果您喜欢某个主题,但想对其进行调整,只需将该主题添加为自定义主题的父级即可。例如,您可以修改传统的对话框主题以使用您自己的背景图像,如下所示:
<style name="CustomTextView" parent="@android:style/Widget.TextView">
<item name="android:background">@drawable/custom_background</item>
</style>
然后,从 CustomTextView 中插入
<style name="CustomTextView.RedText">
<item name="android:textColor">@color/red</item>
</style>
设计 XML 布局后,您可以继承主题并覆盖属性
<TextView
android:id="@+id/example"
style="@style/CustomTextView.RedText"
android:textColor="@color/green" />
我认为您应该再次阅读您自己链接的页面,这很好解释:)