我在我的应用程序中创建了几种字体样式。
如何将这些样式添加到视图中?- 1) 使用样式属性 2) 使用 textAppearance。
使用样式不是一个选项,因为视图可能具有其他属性(边距、填充、最小宽度等 - 我不能为视图指定 2 种样式),所以我需要单独指定与文本相关的属性,但android:textColor
在这里不起作用:
样式.xml:
<style name="TextAppearance.baseText" parent="@android:style/TextAppearance">
<item name="android:textAppearance">?android:textAppearanceSmall</item>
<item name="android:typeface">sans</item>
<item name="android:textColor">@android:color/white</item>
<item name="android:textSize">15sp</item>
</style>
布局.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="65dp"
android:orientation="horizontal" >
<Button
android:id="@+id/backButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sometext"
android:textAppearance="@style/TextAppearance.baseText"/>
</RelativeLayout>
为什么它不起作用?如何在 textappearance 中指定 textcolor?