爲什麼滾動視圖內的線性佈局不適合屏幕尺寸? 我試圖用「Layout_Height」做一些改變,但沒有成功。線性佈局不適合屏幕尺寸
這是我的XML代碼:
感謝您的幫助!
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollViewPhysicalExam"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/HeaderText"
android:orientation="vertical" >
<!-- ++++++++++++++++++ Row18 ++++++++++++++++++ -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/btnBack"
android:text="@string/Back"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.00"
android:textSize="15dip" />
<Button
android:id="@+id/btnSave"
android:text="Save"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.00"
android:textSize="15dip" />
</LinearLayout>
<!-- +++++++++++++++++++++++++++++++++++++++++++ -->
</LinearLayout>
</LinearLayout>
</ScrollView>
沒有,線性佈局太短,所以當我運行在一個符大小的線性佈局切斷在屏幕中間的程序。 – user2235615 2013-04-07 11:40:54
垂直切割中間或水平?你可以發佈一個截圖嗎? – chuky 2013-04-07 11:46:15
抱歉,我是新來的,我不知道如何加載圖像。 水平地在屏幕中間。 – user2235615 2013-04-07 11:54:00