我想将ScrollView添加到以下xml_layout文件中。但我遇到了一些麻烦。
好的所以我研究了这个,发现通过将“LinearLayout xmlns:android =”http://schemas.android.com/apk/res/android“更改为ScrollView ...我得到了可怕的”ScrollView可以托管只有一个直接的孩子“。所以我将所有东西都包装在一个LinearLayout中,我的错误就消失了。现在ScrollView正常工作,但是在我的第一个TableLayout之后我放弃了所有。我不明白为什么。
虽然“是”,但我确实想要答案,我也想知道为什么会这样。
我将第一个LinearLayout和匹配标记更改为Scrollview。然后在ScrollView下面添加一个LinearLayout,并将其关闭在最后一个标记的结束ScrollView上方。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:stretchColumns="0" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="25dp" >
<EditText
android:id="@+id/edit_input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:text="Canton, Ohio" />
<Button
android:id="@+id/cmd_submit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OK" />
</TableRow>
<TableRow >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Input like: 'City, State' or ZIP" />
</TableRow>
</TableLayout>
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:stretchColumns="0" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="10dp"
android:paddingLeft="50dp">
<CheckBox
android:id="@+id/chk_usecelsius"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Use °C (not °F)"
/>
</TableRow>
</TableLayout>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="Current Tempature"
android:textSize="30dp" />
<com.kickintheapp.PapaStew.views.SingleWeatherInfoView
android:id="@+id/weather_today"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:paddingTop="15px"
android:paddingBottom="15px" />
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:stretchColumns="0" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</TableRow>
</TableLayout>
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingTop="15px"
android:stretchColumns="0,1,2,3" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<com.kita.PapaStew.views.SingleWeatherInfoView
android:id="@+id/weather_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical" />
<com.kita.PapaStew.views.SingleWeatherInfoView
android:id="@+id/weather_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical" />
<com.kita.PapaStew.views.SingleWeatherInfoView
android:id="@+id/weather_3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical" />
<com.kita.PapaStew.views.SingleWeatherInfoView
android:id="@+id/weather_4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical" />
</TableRow>
</TableLayout>