Re: [android-beginners] Text Color

2010-04-15 Thread Justin Anderson
Well, what color are you wanting to make? http://developer.android.com/reference/android/graphics/Color.html says this: *The Color class defines methods for creating and converting color ints. Colors are represented as packed ints, made up of 4 bytes: alpha, red, green, blue. The values are

Re: [android-beginners] Text Color

2010-04-15 Thread Kevin Brooks
I want the text to be black. It is coming out grey. On Thu, Apr 15, 2010 at 10:23 AM, Justin Anderson janderson@gmail.comwrote: Well, what color are you wanting to make? http://developer.android.com/reference/android/graphics/Color.html says this: *The Color class defines methods for

Re: [android-beginners] Text Color

2010-04-15 Thread Mark Murphy
Kevin Brooks wrote: I want the text to be black. It is coming out grey. Try FF00 instead of 00. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.0 Available! -- You received this message because you are

Re: [android-beginners] Text Color

2010-04-15 Thread Kevin Brooks
I tried the FF00 and it is still Gray instead of black. The Background I have as FFDCDCDC so I get the background color I want. On 4/15/2010 11:49 AM, Mark Murphy wrote: Kevin Brooks wrote: I want the text to be black. It is coming out grey. Try FF00 instead of 00.

Re: [android-beginners] Text Color

2010-04-15 Thread Justin Anderson
If all you want is black you could do this: android:textColor=@android:color/black -- There are only 10 types of people in the world... Those who know binary and those who don't.

Re: [android-beginners] Text Color

2010-04-15 Thread Kevin Brooks
I figured it out. I was putting the Text Color at the Layout declaration instead of the element declaration. :) On 4/15/2010 10:07 PM, Justin Anderson wrote: If all you want is black you could do this: android:textColor=@android:color/black