Skip to content

A button they you can slide to open or close something

License

Notifications You must be signed in to change notification settings

xlg/SlideSwitch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SlideSwitch

About SlideSwitch

A button that you can slide on or off

How to use it

you can define a slideswitch in xml like the following example

    <com.leaking.slideswitch.SlideSwitch
        android:layout_width="100dip"
        android:layout_height="120dip"
        slideswitch:isOpen="false"
        slideswitch:shape="circle"
        slideswitch:themeColor="#f200aa96" >
    </com.leaking.slideswitch.SlideSwitch>

you can initial the state(on or off) in jave code in this way

	bulletSwitch.setState(true);

and you can listen to the change of the slideswitch like this

    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

##Author

Quinn Chen

[email protected]

About

A button they you can slide to open or close something

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%