リストビューが edittext ボックスに重なっているのはなぜですか? 問題は、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>