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
ScrollView
as your parent most layout. That's reason
your whole layout gets scrolled.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...