1

I would like to use the default ice cream sandwich radio button but not with ligth blue color. I would like to recolor it.

Can i somewhere found the original .xml files to recolor and use it in my project?

Adam Varhegyi
  • 11,307
  • 33
  • 124
  • 222

2 Answers2

1

Look in your SDK folder, API-Level, under data/res/drawable

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
0

Take a look in the Android sources:

https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/core/res/res

Most of the drawables use styles, so you can just change the colors by setting styles in your app.

Like here: https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/core/res/res/values/styles.xml

brummfondel
  • 1,202
  • 1
  • 8
  • 11