作者:太2真人05 | 来源:互联网 | 2021-09-04 17:38
这篇文章主要介绍了Android中EditText和AutoCompleteTextView设置文字选中颜色方法,本文给出了效果图和实现代码,需要的朋友可以参考下
EditText和AutoCompleteTextView设置文字选中颜色 大多数Android Rom上,文本选择的背景色都是很好看的鲜绿色, 但是在某些垃圾的三星手机上,居然是蓝色,令人恶心反感,其实完全可以通过程序来修改,文本的默认选中背景色.
所用API解释
代码如下:
android:textColorHighlight Color of the text selection highlight.
EditText设置效果
AutoCompleteTextView 设置效果
实现代码
代码如下:
<&#63;xml version="1.0" encoding="utf-8"&#63;>
android:layout_
android:layout_
android:orientation="vertical" >
android:id="@+id/et_inputBox"
android:layout_
android:layout_
android:textColorHighlight="#B4DF87"
/>
android:id="@+id/act_input"
android:layout_below="@id/et_inputBox"
android:layout_
android:layout_
android:textColorHighlight="#B4DF87"
/>