テーマを作成しようとしていますが、特定のテキストビューに異なる色を与えることは可能ですか?
例: "Theme.One" では、textview "Title" を Green に、textview "text1" を Pink にします。
Themes.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" />
私は文章をうまく定式化したいと思っています.
アジザ