是否可以在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>
我试了但是它没有给我想要的输出。所以我想问一下,这是否有效?