关于ScrollView不能显示 老报错 是因为ScrollView不能直接嵌套很多布局或是控件,最好让他套一个总布局。
//—————————————例如:
//这第一种 这种布局ScrollView的嵌套,ScrollView嵌套了TextView,如果是这样的话,ScrollView根本无法正常显示出来!
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="aaaa"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:text="bbbb"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>
//第二种 ScrollView嵌套RelativeLayout,RelativeLayout里再嵌套TextView,以下这种方式才可以让ScrollView正常显示。
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="300dp">
<TextView
android:text="aaaa"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TextView
android:text="bbbb"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
</ScrollView>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/118390.html