EditText not scrollable inside ScrollView

前端 未结 11 729
栀梦
栀梦 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 13:04

    • You have set ScrollView as your parent most layout. That's reason your whole layout gets scrolled.
    • As, far as your EditText is concerned, you have used android:scrollbars = "vertical" which means if the EditText grows a vertical srollBar will appear. You will get the scrollbar and scrolling effect only if edittext has data high enough..

    Hope this helps...

提交回复
热议问题