正如错误所言
ScrollView can host only one direct child
将
Views 包裹在a 的内部,
LinearLayout因此
ScrollView只有
LinearLayoutas作为直接子代。
来自文档
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>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)