在Xamarin中,我有一个EditText对象,以及在将文本输入EditText对象时填充项目的ListView。
目前,当我在EditText中输入文本时,会显示ListView,但是在EditText之上,这样我就无法再输入任何数据了。
如何在EditText对象下显示ListView?
这是我的布局代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="5dip">
<FrameLayout
android:id="@+id/mapWithOverlay"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:layout_below="@+id/thumbnail" />
<ListView
android:id="@+id/List"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<EditText
android:id="@+id/inputSearch"
android:layout_width="281.5dp"
android:layout_height="45dp"
android:hint="Find..."
android:layout_marginBottom="15.2dp"
android:layout_marginTop="8.5dp"
android:layout_marginLeft="8.5dp" />
</RelativeLayout>
提前致谢
答案 0 :(得分:0)
试试这个 -
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="5dip">
<FrameLayout
android:id="@+id/mapWithOverlay"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:layout_below="@+id/thumbnail" />
<ListView
android:id="@+id/List"
android:layout_width="fill_parent"
android:layout_marginTop="50dp"
android:layout_height="fill_parent" />
<EditText
android:id="@+id/inputSearch"
android:layout_width="281.5dp"
android:layout_height="45dp"
android:hint="Find..."
android:layout_marginBottom="15.2dp"
android:layout_marginTop="8.5dp"
android:layout_marginLeft="8.5dp" />
</RelativeLayout>
答案 1 :(得分:0)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="5dip">
<FrameLayout
android:id="@+id/mapWithOverlay"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:layout_below="@+id/thumbnail" />
<ListView
android:id="@+id/List"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_below="@+id/tr" />
<TableRow android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/tr">
<EditText
android:id="@+id/inputSearch"
android:layout_width="281.5dp"
android:layout_height="45dp"
android:hint="Find..."
android:layout_marginBottom="15.2dp"
android:layout_marginTop="8.5dp"
android:layout_marginLeft="8.5dp" />
</TableRow>
</RelativeLayout>
试试这个,希望它能帮到你..
答案 2 :(得分:0)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dip">
<EditText
android:id="@+id/inputSearch"
android:layout_width="281.5dp"
android:layout_height="45dp"
android:layout_marginBottom="15.2dp"
android:layout_marginLeft="8.5dp"
android:layout_marginTop="8.5dp"
android:hint="Find..." />
<ListView
android:id="@+id/List"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/inputSearch" />
</RelativeLayout>