I am using Keyboardsurfer’s Crouton class for Android. It uses the Holo Colors as Background Color (android.R.color.holo_red_light).
Now those colors only get shown on Holo Themed Devices. On the older ones it’s shown as grey.
I now want to know if there is any way of getting those colors to the old devices too to use them?
Copy the Color values from
<android-sdk-path>/platforms/android-16/data/res/values/colors.xmlto your owncolors.xmlfile –<project-dir>/res/values/colors.xml.Now use the values as Background color
(R.color.holo_red_light).<android-sdk-path>is you android-sdk direcotry path.