[android-developers] Re: text color of a ListView

2011-10-22 Thread Ali Chousein
The approach suggested by Jeremy should work but android:textColor should be in a TextView.../TextView AFAIK. Or when you populate your list and access your TextViews, programmatically change the color by calling setTextColor(int). If it still doesn't work, try different colors, maybe

Re: [android-developers] Re: text color of a ListView

2011-10-21 Thread siva prakash
you can define your own text syle On 08/18/2011 02:40 AM, bob wrote: This didn't work. On Aug 17, 2:45 pm, Jeremy Dagornjeremy.dag...@gmail.com wrote: Hi, In your xml layout file : ListView ... android:textColor=#FF /ListView Best, On Aug 17, 11:29 am, bobb...@coolgroups.com wrote:

[android-developers] Re: text color of a ListView

2011-08-17 Thread Jeremy Dagorn
Hi, In your xml layout file : ListView ... android:textColor=#FF /ListView Best, On Aug 17, 11:29 am, bob b...@coolgroups.com wrote: Anyone know an easy way to change the text color of a ListView on Android? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: text color of a ListView

2011-08-17 Thread bob
This didn't work. On Aug 17, 2:45 pm, Jeremy Dagorn jeremy.dag...@gmail.com wrote: Hi, In your xml layout file : ListView ... android:textColor=#FF /ListView Best, On Aug 17, 11:29 am, bob b...@coolgroups.com wrote: Anyone know an easy way to change the text color of a

[android-developers] Re: text color of a ListView

2011-08-17 Thread Chris
How are you populating your list view? Do you have a layout resource for the rows, or are you creating the rows in code? In either case, set the color there. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: text color

2011-06-08 Thread James Ots
What part of colour setting are you having difficulty with? James -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Re: text color

2011-06-08 Thread Simon Platten
Select the textview, then click on the properties tab, scroll down to text coloryou have to create a colors.xml file in your resources and put all your color definitions in it. Regards,Sy On 8 Jun 2011 18:07, James Ots james...@gmail.com wrote: What part of colour setting are you having

[android-developers] Re: Text color in fast scroll SectionIndexer box

2010-04-11 Thread Kumar Bibek
Use this property for your ListView android:cacheColorHint=# Thanks and Regards, Kumar Bibek On Apr 10, 6:55 pm, EPecorari emanuele.pecor...@gmail.com wrote: Hi, I have a ListView with the fast scroll enabled. The background of the listview is white and the text is black. The box

[android-developers] Re: text color won't change for TextView.setEnabled(false)

2008-08-23 Thread samlu
If I remove the line of android:textColor, it backs to normal. But I think the current scheme is still having a big problem for developer. For example, I created a TextView object with TextView android:id=@+id/txtResults android:layout_width=fill_parent android:layout_height=fill_parent /