My question is about Android
SwitchCompat
.
The style I want:

But my switching style is:

My finger width is something wrong. (Please ignore the track size)
This is my xml code:
<android.support.v7.widget.SwitchCompat
app:switchMinWidth="@dimen/_108px"
android:layout_width="@dimen/_108px"
android:layout_height="@dimen/_60px"
android:thumb="@drawable/switch_thumb_selector"
app:track="@drawable/switch_track_selector" />
android:layout_width
helps set the width of the track, and android:layout_height
helps set the height of the thumb. But I want to set the width of the thumb. How to set thumb width?
source
share