1

为什么我的列表视图与我的编辑文本框重叠我认为问题在于我使用 frameLayout 的方式是我的 XML 编码我希望我的列表视图位于我的编辑文本下方我该怎么做?

这是我的 XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<EditText
            android:id="@+id/editText2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Search Bus Station..."
            android:inputType="textVisiblePassword"
            android:imeOptions="actionDone"
            android:background="@drawable/textinputborder"
            android:ems="10"
            android:padding="5dip"
            android:textSize="18sp" >

        </EditText>

        <ListView
            android:id="@+id/list_view2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignBottom="@+id/editText2"
            android:layout_alignParentBottom="true"
            android:background="#111"
            android:choiceMode="singleChoice"
            android:divider="@android:color/transparent"
            android:dividerHeight="0dp" >
        </ListView>

4

6 回答 6

1

添加android:layout_below="@+id/editText2"到你的ListView,这样你ListView的总是会低于你的EditText

或者,您可以根据需要添加android:layout_marginTop="10dp"ListView设置保证金值(但不推荐)。

于 2013-10-04T05:20:43.567 回答
0
// try this
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:paddingBottom="@dimen/activity_vertical_margin"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="@dimen/activity_horizontal_margin"
                android:paddingTop="@dimen/activity_vertical_margin"
                tools:context=".MainActivity" >

    <EditText
            android:id="@+id/editText2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Search Bus Station..."
            android:inputType="textVisiblePassword"
            android:imeOptions="actionDone"
            android:background="@drawable/textinputborder"
            android:ems="10"
            android:padding="5dip"
            android:textSize="18sp" >

    </EditText>

    <ListView
            android:id="@+id/list_view2"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:layout_height="0dp"
            android:background="#111"
            android:choiceMode="singleChoice"
            android:divider="@android:color/transparent"
            android:dividerHeight="0dp" >
    </ListView>
    </LinearLayout>
于 2013-10-04T05:18:02.070 回答
0

在您的列表视图中使用 android:layout_below作为创建布局的参考,请参阅

<EditText
        android:id="@+id/editText2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Search Bus Station..."
        android:inputType="textVisiblePassword"
        android:imeOptions="actionDone"
        android:background="@drawable/textinputborder"
        android:ems="10"
        android:padding="5dip"
        android:textSize="18sp" >

    </EditText>

    <ListView
        android:id="@+id/list_view2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/editText2"
        android:layout_alignParentBottom="true"
        android:background="#111"
        android:layout_below="@+id/editText2"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp" >
    </ListView>

希望这会帮助你。

于 2013-10-04T05:19:21.750 回答
0

试试下面的代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <EditText
        android:id="@+id/editText2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/textinputborder"
        android:ems="10"
        android:hint="Search Bus Station..."
        android:imeOptions="actionDone"
        android:inputType="textVisiblePassword"
        android:padding="5dip"
        android:textSize="18sp" >
    </EditText>

    <ListView
        android:id="@+id/list_view2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/editText2"
        android:layout_alignParentBottom="true"
        android:background="#111"
        android:layout_below="@+id/editText2"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp" >
    </ListView>

</RelativeLayout>
于 2013-10-04T05:19:42.687 回答
0

使用android:layout_below属性

添加 android:layout_below="@+id/editText2"到您的 Listview ,下面是您更新的 UI

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <EditText
        android:id="@+id/editText2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/textinputborder"
        android:ems="10"
        android:hint="Search Bus Station..."
        android:imeOptions="actionDone"
        android:inputType="textVisiblePassword"
        android:padding="5dip"
        android:textSize="18sp" >
    </EditText>

    <ListView
        android:id="@+id/list_view2"
        android:layout_below="@+id/editText2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/editText2"
        android:layout_alignParentBottom="true"
        android:background="#111"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp" >
    </ListView>

</RelativeLayout>
于 2013-10-04T05:22:12.333 回答
0

除了使用android:layout_alignBottom="@+id/editText2"尝试设置android:layout_below="@+id/editText2"在你的ListView所以你ListView将永远低于你的EditText

于 2013-10-04T05:22:35.877 回答