你好。這是我的佈局Android fill_parent問題
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@+id/lv"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white" />
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lv" />
</RelativeLayout>
當我運行這個列表視圖佔據全屏。我想要的是列表視圖是除了按鈕區域之外的全屏而不提及dp。由於
你不能做到這一點。您必須先聲明listview才能引用它。相反,將按鈕設置爲alignparentbottom,然後設置它上面的列表視圖 – Falmarri 2010-09-30 15:56:32