What's the Color code for Android Hint? What's the Color code for Android Hint? android android

What's the Color code for Android Hint?


R: 128 G: 128 B: 128

or

#808080


in your xml use this:

    android:textColor="?android:textColorHint"


try #a8a8a8 :)

Create a color.xml file in the res/value folder

Then define it like that:

<?xml version="1.0" encoding="utf-8"?><resources> <color name="gray">#a8a8a8</color></resources>

Then use it like that:

android.graphics.Color.gray;