A button they you can slide to open or close something
you can define a slideswitch in xml like the following example
<com.leaking.slideswitch.SlideSwitch
android:id="@+id/swit"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
slideswitch:isOpen="true"
slideswitch:baseColor="#ffff510e"
slideswitch:moveColor="#ffffff"
slideswitch:slideHeight="30dip"
slideswitch:slideWidth="80dip"
slideswitch:stillColor="#ffa3a3a3" >
</com.leaking.slideswitch.SlideSwitch>
you can initial the state(open or close) in jave code in this way
```java
bulletSwitch.setState(true);
and you can listen the change of the slideswitch like this
```java
updateSwitch.setSlideListener(new SlideListener() {
@Override
public void open() {
// TODO Auto-generated method stub
app.saveAutoUpdateProp(true);
}
@Override
public void close() {
// TODO Auto-generated method stub
app.saveAutoUpdateProp(false);
}
});
## What does it look like
<img src="https://github.com/Leaking/SlideSwitch/blob/master/Example/TestLibs/res/drawable-hdpi/slide_a.png" width="140" />
<img src="https://github.com/Leaking/SlideSwitch/blob/master/Example/TestLibs/res/drawable-hdpi/slide_b.png" width="140" />
##Author
Quinn Chen
chenhuazhaoao@gmail.com