0

我有两个垂直布局,第一个有edittext和按钮,第二个有两个listvies,第一个没有出现,运行应用程序时出现异常

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <EditText
            android:id="@+id/etRestaurantSearchName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:hint="Enter name"
            android:inputType="text"
            android:textSize="15dip" />

        <Button
            android:id="@+id/bRestaurantSearchButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Search" />
    </LinearLayout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <ListView
            android:id="@+id/lvRestaurants"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="#ffffff"
            android:fillViewport="true" >
        </ListView>

        <ListView
            android:id="@+id/lvAlphabets"
            android:layout_width="40dp"
            android:layout_height="match_parent"
            android:layout_weight="2"
            android:background="@drawable/foods_alphabets_bg"
            android:orientation="vertical" >
        </ListView>

    </LinearLayout>

</RelativeLayout>

我敢肯定这与身高、宽度或重量有关,

4

2 回答 2

1

您已使用 RelativeLayout 作为内部两个布局的父布局。因此第二个内部线性布局与第一个重叠,因此看不到第一个。使用线性布局作为父布局

于 2013-01-22T12:12:39.210 回答
1

试试这个:

更正: android:layout_below="@+id/Layout1" 用于布局二。以及一些与体重相关的变化。

<LinearLayout
    android:id="@+id/Layout1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <EditText
        android:id="@+id/etRestaurantSearchName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:hint="Enter name"
        android:inputType="text"
        android:textSize="15dip" />

    <Button
        android:id="@+id/bRestaurantSearchButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Search" />
</LinearLayout>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/Layout1"
    android:orientation="horizontal" >

    <ListView
        android:id="@+id/lvRestaurants"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="@drawable/edit_text"
        android:fillViewport="true" >
    </ListView>

    <ListView
        android:id="@+id/lvAlphabets"
        android:layout_width="40dp"
        android:layout_height="match_parent"
        android:background="@drawable/btn_bg_pressed"
        android:orientation="vertical" >
    </ListView>
</LinearLayout>

于 2013-01-22T12:20:21.317 回答