I want to customize the EditText slider style. See my screenshots below.
This is the default slider style:
This is what I want to see:
This may be a dumb question, but after a few hours Googling, I can only find ways to change the cursor color, but couldn't find an approach to change the slider style.
This is the code I am using for changing the cursor color (color_cursor.xml):
<?xml version="1.0" encoding="utf-8" ?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<size android:width="2dp" />
<solid android:color="#008000" />
</shape>
And I applied the "android:textCursorDrawable="@drawable/color_cursor" to EditText.
Thanks.