我有一个小问题。我旁边有带有 textview 的按钮。我想在触摸textview时触摸按钮(效果:触摸按钮时按钮突出显示)。有一些简单的方法可以做到这一点吗?我找不到任何合适的功能。
编辑:好的,我已经解决了我的问题。这是:
hilfeText.setOnTouchListener(new OnTouchListener() {
public boolean onTouch(View v, MotionEvent me) {
int action = me.getAction();
if(action == MotionEvent.ACTION_DOWN) {
hilfe.setPressed(true);
return true;
} else if (action == MotionEvent.ACTION_UP) {
hilfe.setPressed(false);
return true;
}
return false;
}
});