EditText not scrollable inside ScrollView

前端 未结 11 725
栀梦
栀梦 2020-12-02 12:36

I have a ScrollView inside which is an EditText which is set to scroll vertically. But it does not scrolls. Instead the whole layout scrolls, Whene

11条回答
  •  自闭症患者
    2020-12-02 12:42

    mEdtText1.setOnTouchListener(new View.OnTouchListener() { 
                @Override
                public boolean onTouch(View view, MotionEvent motionEvent) {
                    mScrlMain.requestDisallowInterceptTouchEvent(true);
                    return false;
                }
            });
    

    // change hear mEdtText1 with your edit text object and also change mScrlMain with your scroll view object they work definitely.

提交回复
热议问题