AutoCompleteTextView未出现在listview上方

时间:2013-05-28 23:11:38

标签: android xml listview android-edittext autocompletetextview

好吧,我一整天都在尝试这个,但是我找不到错误,而且我处于困境中。我有一个xml文件,我有一个listview和我的列表我想要一个AutoCompleteTextView,我将在稍后使用它作为搜索栏。问题是在我的xml文件中一切似乎都很好,并出现listview和AutoCompleteTextView但是当我在模拟器中运行我的应用程序只打印列表视图。我曾尝试使用editText而不是autocoplete,但没有发生任何事情。这是我的xml文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_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=".sqlviewpatients" >

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

    <AutoCompleteTextView
        android:id="@+id/autoCompleteTextView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_weight="1"
        android:ems="10"
        android:text="AutoCompleteTextView" />



</RelativeLayout>

<ListView
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/relativeLayout1" >

</ListView>

</RelativeLayout>

请告诉我我做错了什么?我不知道我还能做什么

1 个答案:

答案 0 :(得分:0)

好的,我发现了错误!在.java文件中,我的类扩展了List Activity,并且我在注释中发生了错误的setContentView(R.layout.something),setContent不应该是注释!我花了2天才发现它所以我希望这个答案对他人有所帮助