我有一個網頁這種佈局的:的Android - 網頁不滾動
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/question_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Your question: "
/>
<TextView
android:id="@+id/question"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""
/>
<TextView
android:id="@+id/please_wait"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Please wait while the discussion loads..."
/>
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@+id/label"
android:textSize="20px" >
</ListView>
<EditText
android:id="@+id/question_text"
android:layout_height="wrap_content"
android:hint="@string/question_comment_hint"
android:inputType="textMultiLine"
android:lines="5"
android:layout_width="fill_parent">
</EditText>
<Button
android:id="@+id/submit"
android:layout_height="wrap_content"
android:text="@string/submit"
android:onClick="sendFeedback"
android:layout_width="fill_parent">
</Button>
</LinearLayout>
出於某種原因,一旦屏幕得到填補,它不會向下滾動。任何想法爲什麼會發生?
謝謝!
怎麼回事.. !檢查了這一點...你已經關閉你的scrollView根linearLayout下面。更正你的代碼 – Hulk 2012-04-12 04:50:56
很好的接收,謝謝。 – RobinHood 2012-04-12 04:57:35
只記得ScrollView只能有一個直接的孩子。我犯了那個錯誤> _ < – ThePersonWithoutC 2015-11-01 00:57:31