How to set the scroll Effect of EditText? If the font is full, you can scroll to view the text and edittext to scroll.
When too many words are input, the fixed height allows the font to be viewed in a scroll manner:
<ScrollView android:id="@+id/ScrollView2" android:layout_width="fill_parent" android:layout_height="200px" android:layout_marginBottom="8dp" android:layout_marginLeft="8dp" android:layout_marginRight="10dp" android:layout_marginTop="10dp" > <TableRow android:id="@+id/TableRowContent" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal" > <EditText android:id="@+id/et_advice_content" android:layout_width="fill_parent" android:layout_height="190px" android:layout_marginLeft="10dp" android:layout_marginRight="7dp" android:layout_span="10000" android:gravity="top|left" android:textSize="13sp" > </EditText> </TableRow> </ScrollView>
Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.