Reputation: 60184
I need to know what is the color exactly which is referred by android.R.color.holo_red_light
. Where to check it? Please advice. Thank you.
Upvotes: 0
Views: 1756
Reputation: 48262
Go to your-android-sdk-location\platforms\android-14\data\res
and search for that string in xml files.
Ok, it's
<color name="holo_red_light">#ffff4444</color>
It's in \android-sdk\platforms\android-14\data\res\values\colors.xml
Upvotes: 2