1

是否可以在不为其定义自定义适配器的情况下更改 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>

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

4

1 回答 1

0

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

请参阅下面的答案:

第一的

第二

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

于 2012-10-17T09:23:22.887 回答