Android中EditText和AutoCompleteTextView设置文字选中颜色方法

作者:junjie 时间:2022-12-05 04:45:30 

EditText和AutoCompleteTextView设置文字选中颜色 大多数Android Rom上,文本选择的背景色都是很好看的鲜绿色, 但是在某些垃圾的三星手机上,居然是蓝色,令人恶心反感,其实完全可以通过程序来修改,文本的默认选中背景色.

所用API解释


android:textColorHighlight Color of the text selection highlight.


EditText设置效果

Android中EditText和AutoCompleteTextView设置文字选中颜色方法

AutoCompleteTextView 设置效果

Android中EditText和AutoCompleteTextView设置文字选中颜色方法

实现代码


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <EditText
      android:id="@+id/et_inputBox"
      android:layout_height="wrap_content"
      android:layout_width="match_parent"
      android:textColorHighlight="#B4DF87"
        />

    <AutoCompleteTextView
        android:id="@+id/act_input"
        android:layout_below="@id/et_inputBox"
        android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:textColorHighlight="#B4DF87"
        />
</LinearLayout>

标签:Android,EditText,AutoCompleteTextView,文字选中颜色
0
投稿

猜你喜欢

  • C# yield在WCF中的错误用法(一)

    2022-06-05 06:36:57
  • C#面向对象编程中开闭原则的示例详解

    2022-12-07 11:15:28
  • springboot 自定义异常并捕获异常返给前端的实现代码

    2022-07-23 03:09:52
  • java门禁系统面向对象程序设计

    2023-08-25 02:25:53
  • C#控件picturebox实现图像拖拽和缩放

    2023-08-09 08:23:05
  • java实现图书馆管理系统

    2023-12-10 15:50:29
  • SpringMVC使用hibernate-validator进行参数校验最佳实践记录

    2022-11-12 23:44:04
  • Java并发编程之详解CyclicBarrier线程同步

    2023-08-01 14:08:47
  • Java实现分页代码

    2023-08-05 08:14:47
  • 详解Spring boot上配置与使用mybatis plus

    2023-02-27 08:53:11
  • Android5.0中多种水波纹效果的实现代码

    2023-09-23 04:42:53
  • Android创建服务之started service详细介绍

    2022-12-09 15:10:29
  • Java基础之数组详解

    2021-08-06 08:15:28
  • 详解Spring全局异常处理的三种方式

    2023-11-11 15:31:47
  • Maven+SSM框架实现简单的增删改查

    2023-11-16 17:14:38
  • Java ThreadPoolExecutor的参数深入理解

    2022-08-29 10:08:39
  • Java数据结构之常见排序算法(下)

    2022-05-03 12:49:51
  • Android Studio轻松构建自定义模板的步骤记录

    2023-07-19 01:11:51
  • C#设置软件开机自动运行的方法(修改注册表)

    2022-08-27 21:05:46
  • SpringBoot根据目录结构自动配置Url前缀方式

    2023-01-31 14:04:29
  • asp之家 软件编程 m.aspxhome.com