通过更改样式文件以编程方式更改文本样式,如颜色,文本样式,大小等

时间:2011-03-01 09:08:57

标签: android

我制作了一个样式文件

<?xml version="1.0" encoding="utf-8"?>
  <resources>
    <style name="CodeFont" parent="@android:style/TextAppearance.Medium">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textColor">#ffffff</item>
        <item name="android:textStyle">bold</item>
    </style>
</resources>

进入res / value。目前文本颜色是白色但是通过单击一个按钮我想要更改textcolor,textsize等....通过更改到上面的文件。 请给我一点想法......

2 个答案:

答案 0 :(得分:0)

参考:http://developer.android.com/reference/android/widget/TextView.html

您可以使用setTypeface,setTextColor()等来执行此操作。

答案 1 :(得分:0)

我没试过这个但是尝试在text中使用textColor选择器。这怎么办呃O_o?