Every android application/theme hast it's own basic theme color:
HTC Desire Z - green,
most Samsung deviced - yellow,...
It's the color of selected list items, option menu-radio button, radio button, progress-bars,....
I know how to change these colors individual. But is there a way to change all of them by setting one value?
Something like:
<style name="my_theme" parent="@android:style/Theme.Black">
<item name="android:_DEFAULT_BASE_COLOR_1">#XXXXXX</item>
</style>
//EDIT:
So I'm looking for the keyword of _DEFAULT_BASE_COLOR_1, where I can set a color for radio button, slected list item with only one item. Is it possible?