Android:在没有自定义适配器的情况下更改ListView中的文本颜色

时间:2012-10-17 07:19:44

标签: android-layout

是否可以在ListView中更改textColor而无需为其定义自定义适配器?在TextView中我们可以应用style =“@ style / mystyle”,我们可以在其中定义textcolor。

    <ListView
    android:id="@+id/listview" 
    style="@style/WhiteText"
    />

在值中,样式定义为:

    <resources>
    <style name= "WhiteText">
    <item name ="android:textColor">#FFFFFF </item>
    <item name="android:background">#000000 </item>
    </resources>

我试了但是它没有给我想要的输出。所以我想问一下,这是否有效?

1 个答案:

答案 0 :(得分:0)

可以定义ListView的样式并为其设置Text颜色。

见下文SO答案:

First

Second

希望它会对你有所帮助。  如果有任何疑问,请告诉我。