我正在測試應用程序。我需要顯示問題和選項。針對每個問題的選項數量在手之前是未知的。即爲每個問題有不同數量的選項,因此我動態顯示選項。如何在android中正確修復佈局?
我的代碼:
list.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/linearlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.splash.Header
android:id="@+id/layoutheader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
<ListView
android:layout_height="wrap_content"
android:id="@+id/listview"
android:layout_width="fill_parent">
</ListView>
</LinearLayout>
header.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/topbar"
android:layout_width="330dip"
android:layout_height="wrap_content"
android:background="@drawable/topplain"
>
</ImageView>
<ImageView
android:id="@+id/home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/homebtn"
android:layout_marginTop="4dp"
android:layout_alignParentLeft="true"
>
</ImageView>
<ImageView
android:id="@+id/back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/backbtn"
android:layout_marginTop="4dip"
android:layout_marginLeft="255dip"
android:layout_alignParentRight="true"
android:onClick="back"
>
</ImageView>
</RelativeLayout>
listitem.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
android:id="@+id/lnrlayout">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv_question"
android:text=""
android:textColor="#000000"
android:layout_below="@+id/casedescription"
android:layout_marginTop="10dp"
></TextView>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:id="@+id/rlt_main"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="vertical"
android:id="@+id/chkboxes"
android:layout_below="@+id/tv_question"
android:layout_alignParentLeft="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
</LinearLayout>
</RelativeLayout>
</RelativeLayout>
這裏我的問題是根據問題的大小布局正在擴大否則佈局只顯示如圖所示的半屏。如何解決這個問題。我嘗試了很多來調整佈局,但仍面臨同樣的問題。請幫助我解決這個問題。在此先感謝..
你更好的使用,而不是線性 – Akram 2012-02-13 06:22:11
喜相對佈局哪一個,我應該使用相對layout..is對於列表視圖? – RaagaSudha 2012-02-13 06:23:27
第一個。 – Akram 2012-02-13 06:24:57