Button Pressed Animation be longer
- by user1263567
i have this button xml, when it be will pressed, the pressed image(b) would be longer to display before it goes back to normal button.
Here's my xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:state_pressed="false" android:drawable="@drawable/a" />
<item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/b" />
<item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/b" />
<item android:drawable="@drawable/a" />
Anyone has idea on this?