我正在尝试制作主题,我问过自己,是否可以为特定的文本视图提供不同的颜色。
示例:在“Theme.One”中,我希望在文本视图“标题”中使用绿色,文本视图“text1”中使用粉红色。
主题.xml
<style name="Theme.One" parent="@android:style/Theme.Light">
<item name="android:background">@color/Azur</item>
<item name="android:textColor">@color/Black</item>
...
</style>
<style name="Theme.Two" parent="@android:style/Theme.Light">
<item name="android:background">@color/Blue</item>
<item name="android:textColor">@color/White</item>
...
</style>
接口.xml
<TextView
android:text="@string/Title"
android:id="@+id/Title"
android:textSize="25sp" />
<TextView
android:text="@string/text1"
android:id="@+id/text1"
android:textSize="20sp" />
我希望有很好的句子,并提前感谢您的回答,
阿齐扎