下の画像のようにスイッチを作成する必要があります
オンとオフの両方のイメージがあります。私はそれらを次のように実装しました
<android.support.v7.widget.SwitchCompat
android:id="@+id/swtichTournament"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:showText="false"
android:thumb="@drawable/switch_selector"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:checked="false" />
セレクター XML
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:drawable="@drawable/switch_off" />
<item android:state_pressed="true" android:drawable="@drawable/switch_on" />
<item android:state_checked="true" android:drawable="@drawable/switch_on" />
<item android:drawable="@drawable/switch_off" />
これは私が得るものです
ご覧のとおり、不要な余分な色がいくつかあります。どうすればそれを削除できますか?