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

Searchbox with hint and search icon on left

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

我可以向 searchview 添加提示,但它只有在单击搜索视图上的搜索图标后才可见。我正在使用以下代码向搜索视图添加提示。

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

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

使用这个

<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">

试一试对我有用,

 <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);

快乐编码...