figured it out, I need set onTouchListener to the view and in the onTouch 
method, call onTouchEvent(event). Thus try to capture "Fling" firstly, if 
false returned, onClick() will be fired by Android.

    @Override
    public boolean onTouch(View view, MotionEvent event) {
        switch(view.getId()) {
        case R.id.buttonA:
            if (onTouchEvent(event)) {
                return true;
            } else {
                break;
            }
        }
        return false;
    }

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to