使用Selector.xml
文件inyour繪製,然後使用兩個不同的背景圖片。一個是懸停圖像另一個是正常圖像。
例:
<?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>
,你使用的是什麼?是混合應用程序或原生Android應用程序? – anand4tech
是的,它是一個混合應用程序 – user2761566
使用user-scalable = no「在meta標記中的html – anand4tech