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
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
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 thatStateListDrawable
as theToggleButtos
's background.