android Edittext在输入时改变文本的颜色背景

时间:2016-07-25 08:35:13

标签: android android-edittext

我编辑了这样的文字:

<EditText
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="input something"
            android:layout_weight="1"
            android:textSize="20sp"
            android:textColor="#04ff00"
            android:textColorHint="#0094fd"/>

这是结果:

enter image description here

像图像一样,我想在edittext中输入时改变文本的背景 怎么做?

1 个答案:

答案 0 :(得分:1)

要实现该行为,请将textColorHighlight添加到EditText

<EditText
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:hint="input something"
      android:layout_weight="1"
      android:textSize="20sp"
      android:textColor="#04ff00"
      android:textColorHint="#0094fd"
      android:textColorHighlight="@android:color/holo_red_light"/>

最终结果是这样的: enter image description here