Android中ScrollView内的ScrollView问题

时间:2013-07-01 12:19:10

标签: android scrollview

我这样做是为了访问子滚动视图的触摸事件。

parentScrollView.setOnTouchListener(new View.OnTouchListener() {

                public boolean onTouch(View v, MotionEvent event) {
                    Log.v(TAG,"PARENT TOUCH");
                    findViewById(R.id.child_scroll).getParent().requestDisallowInterceptTouchEvent(false);
                    return false;
                }
            });
            childScrollView.setOnTouchListener(new View.OnTouchListener() {

                public boolean onTouch(View v, MotionEvent event)
                {
                    Log.v(TAG,"CHILD TOUCH");
                     //  Disallow the touch request for parent scroll on touch of child view
                    v.getParent().requestDisallowInterceptTouchEvent(true);
                    return false;
                }
            });

当我触摸子滚动视图时,我能够找到日志但子滚动视图不滚动它有更多的记录要滚动。我如何独自制作卷轴儿童?

0 个答案:

没有答案