проблема размещения Button / ListView под относительным макетом в макете XML - PullRequest
0 голосов
/ 30 июня 2011

Ниже приведен макет XML для чего-то, над чем я работаю.Предполагается отображать и редактировать поле и некоторые кнопки в верхней части экрана, а ListView заполняет все остальное.Однако отображаются только элементы, встроенные в RelativeLayout.Элементы ниже не отображаются.Я не уверен, что я делаю неправильно в макете XML.

<?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" >
<RelativeLayout
    android:orientation="vertical" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:padding="10px">

    <TextView android:id="@+id/tidName" 
              android:layout_width="wrap_content" 
              android:layout_height="wrap_content" 
              android:gravity="center_horizontal"
              android:text="Enter Name:" />

    <EditText android:id="@+id/eidName" 
              android:layout_width="fill_parent" 
              android:layout_height="wrap_content" 
              android:background="@android:drawable/editbox_background"
              android:layout_below="@id/tidName" />

    <Button android:id="@+id/bidShow" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_below="@id/tidName"
            android:layout_alignParentRight="true"
            android:layout_marginLeft="10px"
            android:text="Show Search Results" />

    <Button android:id="@+id/bidUseDefault"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:layout_below="@id/tidName"
            android:layout_alignParentLeft="true"
            android:layout_marginRight="10px"
            android:text="Use Default" />

</RelativeLayout>
<Button 
            android:layout_below="@id/ridMain"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:text="Refresh" />
<ListView android:id="@+id/lidResults"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
</LinearLayout>

заранее спасибо,

1 Ответ

6 голосов
/ 30 июня 2011

Добавьте android:orientation="vertical" в основной макет

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...