0

我知道之前在这里已经多次询问过文本外观,但是我在让它正常工作时遇到了问题。下面显示的是主题 xml 以及文本视图样式 xml。主题 AppTheme 应用在清单文件中。

我遇到的问题是没有应用 textview 样式。我期待它以与 android:buttonStyle 类似的方式工作。

有谁知道可能导致此问题的原因是什么?

谢谢

主题 XML

<style name="AppBaseTheme" parent="android:Theme.Holo">

</style>

<style name="AppTheme" parent="AppBaseTheme">

    <item name="android:windowBackground">@drawable/backgroundmain</item>
    <item name="android:buttonStyle">@style/button_main</item>
    <item name="android:textAppearance">@style/textview_main</item>

</style>

文本视图样式 XML

<style name="textview_main">

    <item name="android:textColor">@color/Snow</item>
    <item name="android:textSize">16sp</item>

</style>
4

1 回答 1

0

您可以通过 XML 布局应用它,如下所示:

 <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" 
    android:textAppearance="@style/textview_main"
    />

希望对你有所帮助。

于 2013-04-12T23:02:41.913 回答