android - how to make a textview scroll? -
actually im showing data in textview half of data going out of screen need make textview scroll or other thing can scroll down screen.
any appreciated!
put textview inside scrollview in xml like:
<scrollview android:layout_width="fill_parent" android:layout_height="fill_parent"> <textview android:id="@+id/txt2" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="txt2"/> </scrollview>
Comments
Post a Comment