I want to customize switch as shown in below image.
I have tried 'SwitchCompat' but can't customize it as image. Below is code.
<style name="CustomSwitchStyle" parent="Theme.AppCompat.Light.NoActionBar">
...
<!-- Active thumb color & Active track color(30% transparency) -->
<item name="colorControlActivated">@color/white</item>
<!-- Inactive thumb color -->
<item name="colorSwitchThumbNormal">@color/white</item>
<!-- Inactive track color(30% transparency) -->
<item name="android:colorForeground">@android:color/darker_gray</item>
</style>
I have also tried with 'Switch' widget but still it dosen't looks like the required custom switch.
Try to change it Programatically.
Refer this.
EDIT 1:
Another way change color.
Note : Change color as you want.