I'm trying to make the pointer color of EditText
to become blue.
I'm able to make the underline and the cursor to become blue, but the droplet looking pointer is still grey.
I google a bit, but all the links that appear only talk about how to change the cursor, not the pointer. So if anybody knows how to do this, I need your help.
I only need to support Android 5.0 and above. So if your solution only works on API > 21, that's totally fine.
Thanks!
I recognize this is really late, but if all you want to do is change the color of the handle, you just need to add the following to your styles.xml file.
Or if you want to set it app-wide, you can do the following:
And then just set the theme on whatever activity is holding the
EditText
which you want to affect.Problem solved!
in your styles.xml put like this:
After some hours of checking other solutions I found this one. If you wish to change a cursor handler only in one activity, you should do so. Change your values/styles.xml, for instance:
where @color/cursor is added in values/color.xml. After that apply the style to the activity as written here: Apply a theme to an activity in Android?.