我不知道如何在焦点和按下时更改android中编辑文本的背景颜色?
问问题
886 次
2 回答
1
使用选择器 xml 标记来执行此操作。
于 2012-10-30T13:27:00.213 回答
0
编辑文本选择器.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:drawable="@drawable/edit_text_focus"/>
<item android:drawable="@drawable/edit_text_border" />
</selector>
activity_main.xml
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@drawable/edit_text_selector"
android:hint="@string/password" />
于 2020-08-23T02:41:27.600 回答