我是Android编程的新手,我遇到了问题"一个scrollview只能有一个孩子"我的剧本有什么问题? 我想知道你是否需要服用ScroolView?或者我该如何解决这个问题?任何人都可以正确编辑scrpt吗?
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="-1"
android:layout_height="-1">
<LinearLayout
android:orientation="1"
android:layout_width="-1"
android:layout_height="-1">
<LinearLayout
android:orientation="1"
android:layout_width="-1"
android:layout_height="-1"
android:layout_marginLeft="12800"
android:layout_marginTop="2560">
<TextView
android:textColor="-1"
android:layout_width="-2"
android:layout_height="-2"
android:text="2131034150"/>
<Spinner
android:id="2131165208"
android:layout_width="94720"
android:layout_height="-2"
android:drawSelectorOnTop="-1"
android:prompt="2131034149"/>
<TextView
android:textColor="-1"
android:layout_width="-2"
android:layout_height="-2"
android:text="2131034143"/>
<EditText
android:id="2131165202"
android:layout_width="-2"
android:layout_height="-2"
android:maxLines="1"
android:width="94721"
android:maxLength="50"/>
<TextView
android:textColor="-1"
android:layout_width="-2"
android:layout_height="-2"
android:text="2131034144"/>
<EditText
android:id="2131165203"
android:layout_width="-2"
android:layout_height="-2"
android:maxLines="1"
android:width="94721"
android:password="-1"
android:maxLength="30"/>
</LinearLayout>
<LinearLayout
android:layout_gravity="3"
android:orientation="0"
android:paddingLeft="58881"
android:paddingBottom="5121"
android:layout_width="-2"
android:layout_height="-2">
<Button
android:id="2131165204"
android:layout_width="-2"
android:layout_height="-2"
android:text="2131034145"
android:width="35841"/>
</LinearLayout>
</LinearLayout>
</ScrollView>
答案 0 :(得分:3)
错误是不言自明的。
滚动视图只能有一个直接子项。
所以制作一个包含所有孩子的容器布局。并将容器布局放在scrollview中。
示例层次结构:
<ScrollView>
<LinearLayout> <!-- new container layout-->
<!-- all your children layouts, views -->
</LinearLayou>
</ScrollView>
答案 1 :(得分:1)
首先 -1 -2 等是视图和布局的高度和宽度的无效值。
问题是自我描述的; ScrollView
内部View
不能超过1 LinearLayout
。
将所有观看次数放在根{{1}}
中答案 2 :(得分:0)
是的,在Android应用程序中,当您设计一个布局时,您只能拥有ScrollView的一个子项。并解决这个问题你必须做一个孩子,所有其他的视图和小部件将在下面的代码中
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!-- all other childs (more than one) can be placed here -->
</Linearlayout>
</ScrollView>
答案 3 :(得分:0)
scrollView不是布局。它只是一个容器,您可以在其中定义您的布局。 所以你必须在scrollView中定义你的布局;然后添加您需要的任何布局。 所以视图是滚动的孙子
你的代码应该是这样的