Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有用于在 Android 中的元素上点击/向上(两个不同的)事件?点击似乎与点击“向上”(将手指从屏幕上移开)基本相同,但据我所知,并没有真正好的点击事件。
我一直在搞乱 Touch 事件,但它会触发手指和物体之间的任何接触,包括手势。
.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { if (event.getAction() == MotionEvent.ACTION_DOWN ) { //my action return true; } return false; } });
做 ACTION_UP 是一样的