开发者

android:screenOrientation="landscape" Scroll not working

开发者 https://www.devze.com 2023-01-17 01:43 出处:网络
how to scroll through activity when activ开发者_开发技巧ity is in landscape mode, Scenario: my textview has around thousand words and few buttons,how to apply scroll to this when activity is in land

how to scroll through activity when activ开发者_开发技巧ity 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


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>
0

精彩评论

暂无评论...
验证码 换一张
取 消