在android中创建自定义搜索(在布局中插入搜索小部件)

时间:2011-06-27 09:38:33

标签: android widget

如何在Android应用布局中创建自定义搜索?

我可以使用活动窗口顶部显示的搜索对话框,但我想要与此处的图像类似:

custom searchview http://img5.imageshack.us/img5/1298/customsearch.gif

如果样本代码可用,我将非常感激。

谢谢。

对不起我的英语。

1 个答案:

答案 0 :(得分:0)

将res文件夹中的搜索布局设为

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@android:color/white" >

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/white">

            <EditText
                    android:id="@+id/searchText"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"/>

            <Button
                    android:id="@+id/searchButton"
                    android:text="Search"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:onClick="search"/>

        </LinearLayout>

        <ListView
            android:id="@android:id/list"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="@android:color/white"/>

</LinearLayout>