Reputation: 1295
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:
and also any link or guide to create such button ?
Thanks
Upvotes: 3
Views: 2166
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