so I'm trying to create a simple scrollable layout and a scrollable edittext's within the layout. Scrollable layout works perfectly with ScrollView layout. I've read about EditText scroll to implement this code -
android:inputType="textMultiLine"
android:lines="10"
android:minLines="1"
android:scrollHorizontally="false"
android:scrollbars="vertical"
But when I run the app on my phone and I try to scroll up within the EditText, it scrolls the layout (Using the ScrollView layout), instead of scrolling the EditText.
Anyway suggestions? Thanks alot!