AndroidDev
AndroidDev

Reputation: 16415

Styled Toggle Buttons in Android

I was reading the tutorial on Styling the Android toggle button here. The author asks us to create the 9patch drawable for both. I have trying to do this all morning, but have not been able to. Could anyone share the images with me, or tell me where i can get them ?

Kind Regards

Upvotes: 1

Views: 429

Answers (2)

dberm22
dberm22

Reputation: 3203

There are links to 9-patches here: https://stackoverflow.com/a/15640365/2066079

The ones provided will style your togglebuttons to look like switches (which are only available in v14+)

Upvotes: 0

Rhys Davis
Rhys Davis

Reputation: 996

You can find the 9patch drawable tool in the SDK folder in the tools folder. It's a very useful tool for creating 9patch images, and you should be able to make your toggle button with it

Upvotes: 1

Related Questions