In my application, I use EditText to write a description of Mail, and I made it as follows. My edittext has several lines. When I enter more lines and try to move from bottom to top in edittext, then the edittext scroll does not work.
Can someone help me? Thanks..
<ScrollView android:id="@+id/scrollView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scrollbarStyle="insideOverlay"> <EditText android:id="@+id/edBody" android:layout_width="fill_parent" android:layout_height="wrap_content" android:lines="5" android:scrollbars="vertical" android:text="" android:inputType="textMultiLine"/> </ScrollView>
Sunil parmar
source share