Android 에서 EditText 와 AutoComplete TextView 설정 텍스트 색상 선택 방법

EditText 와 AutoComplete TextView 설정 텍스트 에서 선택 한 색상 은 대부분 Android Rom 에서 텍스트 가 선택 한 배경 색 은 모두 아름 다운 선명 한 녹색 이지 만 일부 쓰레기 의 삼 성 휴대 전화 에 서 는 파란색 이 라 니 징 그 럽 고 반감 이 듭 니 다.사실은 프로그램 을 통 해 수정 할 수 있 습 니 다.텍스트 의 기본 선택 배경 색 입 니 다.
사용 한 API 설명

android:textColorHighlight Color of the text selection highlight.
텍스트 설정 효과 편집

AutoComplete TextView 설정 효과

구현 코드

<?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>

좋은 웹페이지 즐겨찾기