我尝试在应用程序中创建一个应用程序,我有一个冗长的表单,我希望在滚动视图中,但是当我将EditText添加到scrollView时,eclipse在其设计器视图中显示了一些错误。 / p>
error!
IllegalStateException: ScrollView can host only one direct child
Exception details are logged in Window > Show View > Error Log
任何人都有想法解决它?
在获得上述问题的解决方案后,我已经包含了此代码..!
现在EditText没有显示任何类型的文本,它只是提供了一些建议......!
我有以下XML:
<ScrollView
android:id="@+id/widget64"
android:layout_width="320px"
android:layout_height="358px"
android:fillViewport="true"
android:isScrollContainer="true"
android:saveEnabled="true">
<TableLayout
android:id="@+id/widget58"
android:layout_width="320px"
android:layout_height="65px"
android:orientation="vertical"
>
<TableRow
android:id="@+id/widget60"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/user"
android:text="User"
android:textColor="#000000">
</TextView>
</TableRow>
<TableRow
android:id="@+id/widget60"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center"
>
<EditText
android:id="@+id/users_first_name"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:hint="First Name"
android:focusable="true"
android:inputType="textPersonName"
android:enabled="true"
android:ems="15">
</EditText>
</TableRow>
</TableLayout>
</ScrollView>
答案 0 :(得分:7)
首先将任何布局添加到该滚动视图,然后将edittext添加到该布局。然后自动为该edittext滚动。例如:将Linearlayout添加到该滚动视图,然后将editText添加到taht linearlayout。
答案 1 :(得分:5)
是的,ScrollVew
只能有一个孩子。
为此,做这样的事情
<ScrollView
fillViewPortView = "true">
<RelativeLayout>
// Design the entire layout in here
// Put your elements one below the other. It will automatically scroll
// dont forget to setFillViewPort view to true in ScrollView
</RelativeLayout>
</ScrollView>
这肯定会解决问题 希望他的帮助:)