Android listview not scrolling

前端 未结 7 1394
离开以前
离开以前 2020-12-21 15:21

i have a layout whose starting tag(parent tag is ) is



        
7条回答
  •  情歌与酒
    2020-12-21 16:04

    just add this, then it will work.

    listView.setOnTouchListener(new View.OnTouchListener() {
            // Setting on Touch Listener for handling the touch inside ScrollView
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                // Disallow the touch request for parent scroll on touch of child view
                v.getParent().requestDisallowInterceptTouchEvent(true);
                return false;
            }
        });
    

提交回复
热议问题