我编辑了这样的文字:
<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"/>
这是结果:
像图像一样,我想在edittext中输入时改变文本的背景 怎么做?答案 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"/>