在按钮上滑动

Sliding over buttons

我希望能够 'slide' 在我的按钮上进行操作,就像它们在被触摸时被点击一样。 (作用于 0,而不是作用于 1)。我怎样才能做到这一点?

button.setOnTouchListener 就可以了

button.setOnTouchListener(new OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            if (event.getAction() == MotionEvent.ACTION_DOWN ) {
                //Insert desired code here
                return true;
            }
            return false;
        }
    });

你能解释一下 "slide over these buttons and make them react in a row" 是什么意思吗?