How to have a Lollipop switch button

2020-05-22 06:19发布

I want to have the Lollipop style switch button for my app:

enter image description here

How could I implement this button so it looks like this also on older versions of android?

7条回答
神经病院院长
2楼-- · 2020-05-22 07:19

We are using SwitchCompact in lollipop version or either you can use Updated lolliopop version its better

<android.support.v7.widget.SwitchCompat
    android:id="@+id/compatSwitch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/switch2"
    android:layout_alignLeft="@+id/switch2"
    android:layout_alignStart="@+id/switch2"
    android:layout_marginTop="39dp" />
查看更多
登录 后发表回答