我有一个滚动视图元素,里面是我的android应用程序中的一个表元素。我想插入一个菜单元素。但是当我在Scroll View中放置菜单时出现了这个错误" Scroll View只能有一个孩子"。我在哪里可以修理菜单?
答案 0 :(得分:0)
在您的xml布局文件中,将ViewGroup
LinearLayout
或RelativeLayout
作为第一个孩子添加到ScrollView
。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<!-- everything you already have -->
</LinearLayout>
</ScrollView>