java.lang.IllegalStateException:ScrollView只能托管一个直接子级

java.lang.IllegalStateException:ScrollView只能托管一个直接子级,第1张

java.lang.IllegalStateException:ScrollView只能托管一个直接子级

正如错误所言

ScrollView can host only one direct child

View
s 包裹在a 的内部,
LinearLayout
因此
ScrollView
只有
LinearLayout
as作为直接子代

来自文档

ScrollView是一个frameLayout,这意味着您应该在其中放置一个包含所有要滚动内容的子级;这个孩子本身可能是具有复杂对象层次结构的布局管理器。经常使用的子项是垂直方向的LinearLayout,它显示用户可以滚动浏览的顶级项目的垂直数组。

<ScrollView        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:layout_weight="1" >      <LinearLayout android:layout_width="match_parent"         android:layout_height="wrap_content"         android:orientation="vertical">// all the views currently in your ScrollView     </LinearLayout></ScrollView>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5600785.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存