Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to change textColor in ListView without defining custom adapter for it? As in TextView we can apply style = "@style/mystyle" in which we can define textcolor.

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

In values, the style is defined as:

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

I tried it but it's not giving me desired output. So I want to ask, is it a valid way or not?

share|improve this question

1 Answer

might be possible with to define the style for the ListView and set the Text color for that.

See below SO Answer:

First

Second

Hope it will help you. If any query then let me know.

share|improve this answer
In both the SO answers, custom ListView is used. I just want to change the textColor of ListView so I wonder is there any way to do it easily without using custom listadapter? – Stern Bravo Oct 18 '12 at 9:27
@SternBravo: you can only do it with style of the list view – iDroid Explorer Oct 18 '12 at 10:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.