我有这个按钮xml,当按下它时,按下的图像(b)在返回正常按钮之前显示的时间会更长。
这是我的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" />
有人知道吗?
为了修复。我用过这个。
closeButton.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(final View v, MotionEvent event) {
switch(event.getAction())
{
case MotionEvent.ACTION_DOWN:
v.setPressed(true);
return true;
case MotionEvent.ACTION_UP:
v.setPressed(false);
try {
Thread.sleep(150);
} catch (Exception e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
return true;
}
return false;
}
});
您可以使用exitFadeDuration
设置状态更改的动画
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:exitFadeDuration="@android:integer/config_mediumAnimTime">
<item android:state_activated="true" android:drawable="@android:drawable/list_selector_background_selected" />
<item android:drawable="@color/transparent" />
</selector>
这将使选择器上的淡入/淡出状态发生变化,您可以将时间更改为其他时间。
这样尝试。。
Handler handler=new Handler();
mybutton.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
v.setPressed(true);
handler.postDelayed(new Runnable() {
@Override
public void run() {
v.setPressed(false);
}
}, 2000);<-- you can set for how much time the button should be in pressed state..2 seco9nds in this case
return true;
}
});