在鳍状肢中设置文本颜色

时间:2011-09-09 03:45:47

标签: android textview viewflipper

我正在使用一个鳍状肢,其中有50个文本视图..我想为所有这些设置一个颜色..我是如何在一次拍摄中做到的?

1 个答案:

答案 0 :(得分:0)

您应该可以为整个活动设置样式或主题,例如

<style name="CustomTheme">    
    <item name="android:textColor">#ff0000</item>
</style>

您可以将此样式设置为您的活动,例如

<activity android:theme="@style/CustomTheme">

来自谷歌的文档将给出moe的想法和例子     http://developer.android.com/guide/topics/ui/themes.html