Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android中EditText和AutoCompleteTextView設置文字選中顏色方法

Android中EditText和AutoCompleteTextView設置文字選中顏色方法

編輯:Android開發實例

EditText和AutoCompleteTextView設置文字選中顏色 大多數Android Rom上,文本選擇的背景色都是很好看的鮮綠色, 但是在某些垃圾的三星手機上,居然是藍色,令人惡心反感,其實完全可以通過程序來修改,文本的默認選中背景色.

所用API解釋

代碼如下:

android:textColorHighlight Color of the text selection highlight.

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>

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved