Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android autocomplete background color for EditText

I notice some Android phones have the autocomplete / auto-insert for inserting the login credentials. See Image:

enter image description here

My question is, can I change this Yellow background color to another?

like image 641
Bernas Avatar asked Dec 03 '18 16:12

Bernas


1 Answers

Use the folowing attribute in your appTheme - v26

<item name="android:autofilledHighlight">@android:color/transparent</item>
like image 180
Alex Ferents Avatar answered Sep 29 '22 12:09

Alex Ferents