带有提示和搜索图标的搜索框左侧

时间:2015-08-18 06:17:59

标签: android searchview

我想创建一个 searchview ,它应该有一个搜索图标和提示(如在EditText中)。 android中的默认搜索视图只有搜索图标。它没有像edittext那样的提示。

我可以为 searchview 添加提示,但只有在点击搜索视图上的搜索图标后才会显示。我使用以下代码将提示添加到搜索视图。

String locationSearchViewSetQueryHint = "<font color = #ffffff>Location</font>" 
     locationSearchView.setQueryHint(Html.fromHtml(locationSearchViewSetQueryHint))

如何使用搜索图标显示提示?

2 个答案:

答案 0 :(得分:1)

这对我来说很有用,

 <SearchView
                android:id="@+id/sv_full_list_symbols"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/border"                   
                android:gravity="center" 
                android:queryHint="@string/R471"                  
                android:textColor="@color/white"
                android:textSize="14sp" >
            </SearchView>

在您的代码中添加此内容,

fullSearchView = (SearchView) findViewById(R.id.sv_full_list_symbols);
    SearchManager searchManager1 =  (SearchManager) getSystemService(Context.SEARCH_SERVICE);
    fullSearchView.setSearchableInfo(searchManager1.getSearchableInfo(getComponentName()));
    fullSearchView.setIconifiedByDefault(false);

快乐编码......

答案 1 :(得分:0)

使用此

<EditText
    android:id="@+id/editText1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="40dp"
    android:layout_marginRight="40dp"
    android:layout_marginTop="10dp"
           android:padding="5dp"
    android:background="@drawable/edit_text_bg"
    android:gravity="left"
    android:hint="Search"
    android:drawableStart="@drawable/search_icon">