Selector.xml
在drawable中使用文件,然后使用两个不同的背景图像。一个是悬停图像,另一个是普通图像。
前任 :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/hover_Bg" android:state_pressed="true"></item>
<item android:drawable="@drawable/hover_Bg" android:state_focused="true"></item>
<item android:drawable="@drawable/normal_Bg"></item>
</selector>
在你这样的布局集中。
<EditText
android:id="@+id/firstname_edt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:background="@drawable/Selector"
android:inputType="textPersonName" >
</EditText>