tags:

views:

44

answers:

1

how to scroll through activity when activity is in landscape mode,

Scenario: my textview has around thousand words and few buttons,how to apply scroll to this when activity is in landscape mode

A: 

Surround your TextView with a ScrollView.

<ScrollView
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <TextView
      android:text="lots of text"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
</ScrollView>
binnyb