Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change EditText pointer color (not cursor)

I'm trying to make the pointer color of EditText to become blue.

Droplet looking thing is the pointer

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!

like image 449
I'm a frog dragon Avatar asked Nov 26 '15 02:11

I'm a frog dragon


2 Answers

in your styles.xml put like this:

<item name="colorAccent">@color/blue</item>
like image 163
Shia G Avatar answered Nov 19 '22 08:11

Shia G


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.

<style name="ColoredHandleTheme">
    <item name="colorControlActivated">@color/colorYouWant</item>
</style>

Or if you want to set it app-wide, you can do the following:

<style name="ColoredHandleThemeForWholeApp">
    <item name="colorAccent">@color/colorYouWant</item>
</style>

And then just set the theme on whatever activity is holding the EditText which you want to affect.

Problem solved!

like image 27
LukeWaggoner Avatar answered Nov 19 '22 06:11

LukeWaggoner