Faren
Faren

Reputation: 1295

How can I create a toggle button similar to the Twitter apps location toggle button?

What custom button should I use which could be slided right and left such as on turn on/off location button on android's twitter app as the picture below:

enter image description here

enter image description here

and also any link or guide to create such button ?

Thanks

Upvotes: 3

Views: 2166

Answers (1)

Octavian Helm
Octavian Helm

Reputation: 39603

Use a simple ToggleButton in combination with a StateListDrawable set as its background.

A sample of the ToggleButton is to be found here.

Basically you create an image for the checked and unchecked state of the button. You set the appropriate images in the StateListDrawable and set that StateListDrawable as the ToggleButtos's background.

Upvotes: 3

Related Questions