Daiwik Daarun
Daiwik Daarun

Reputation: 3974

Android: Button Drawable Default

I am trying to use the default Theme.holo button drawable for Android but I cannot find the standard one that's used whenever you create a button. I have tried checking everywhere in the sdk\platforms\android-19\data\res\ but to no avail. Any help searching for it would be appreciated. Thanks in advance!

It looks like the one on the left here, but is mildy transparent.:

Upvotes: 0

Views: 275

Answers (2)

Lal
Lal

Reputation: 14810

See this link

As it says you can find the drawables in

yourandroidsdkrootfolderpath\platforms\android-11\data\res\drawable (ex:D:\android\platforms\android-11\data\res\drawable)

EDIT

Correct path

yourandroidsdkrootfolderpath\platforms\android-8\data\res\drawable-mdpi

Upvotes: 0

Hank G
Hank G

Reputation: 487

The drawables for your theme are located in:

platforms/android-*/data/res/drawable-*

Upvotes: 1

Related Questions