我需要创建如下图所示的开关

我有它的开和关图像。我将它们实现为
<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" />
这就是我得到的

如您所见,有一些额外的颜色不是必需的。我该如何删除它?