Reputation: 1118
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
Upvotes: 2
Views: 2451
Reputation: 26271
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>
Upvotes: 2