I want to have the Lollipop style switch button for my app:
How could I implement this button so it looks like this also on older versions of android?
To have the Lollipop style switch button on older versions of android you should use SwitchCompat in layout xml file
<android.support.v7.widget.SwitchCompat
android:id="@+id/compatSwitch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
and also in java file
SwitchCompat switchCompat = (SwitchCompat) findViewById(R.id.compatSwitch);