搜索视图未显示在工具栏中

Searchview not showing in Toolbar

我在 Support AppCompat v7 lib 24.0.0 上的 Searchview 实际上有问题。

没有显示 SearchView 没有文本和输入文本(看截图)

搜索查询工作完美。

那是我的菜单

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".MainActivity">
    <item
        android:title="@string/search"
        android:id="@+id/action_search"
        android:icon="@drawable/ic_search_24dp"
        app:showAsAction="ifRoom|collapseActionView"
        app:actionViewClass="android.support.v7.widget.SearchView"/>
</menu>

这是我的 onCreateOptionsMenu;

menu.clear();
        inflater.inflate(R.menu.menu_search, menu);
        MenuItem searchItem = menu.findItem(R.id.action_search);
        searchView = (SearchView) MenuItemCompat.getActionView(searchItem);
        searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
            @Override
            public boolean onQueryTextSubmit(String query) {
                //Perform the final search

                return false;
            }

            @Override
            public boolean onQueryTextChange(String newText) {
                //Text has changed, apply filtering?

                return false;
            }
        });

希望有人能帮助我。 :)

塞巴斯蒂安

确保您已将 AppCompat 库添加到您的项目中。您的 activity 是否已延长 "AppCompatActivity"?

并且 showAsAction 应该是:showAsAction="always|collapseActionView"

希望对您有所帮助!

我也有这个问题,我将工具栏高度更改为绝对值而不是 wrap_content,问题就解决了。我不知道为什么,但我认为这个问题与 CoordinatorLayout 和工具栏的高度有关,有些东西打破了 SearchView 的高度。如果我使用 LinearLayout 而不是 CoordinatorLayout 和 AppBarLayout,它就可以工作。

menu.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <item
        android:id="@+id/action_search"
        android:icon="@drawable/ic_search_white_24dp"
        android:orderInCategory="100"
        android:title="@string/action_search"
        app:actionViewClass="android.support.v7.widget.SearchView"
        app:showAsAction="always|collapseActionView" />
</menu>

layout.xml

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="@dimen/toolbar_height"
            android:paddingTop="@dimen/toolbar_top_padding"
            android:background="?attr/colorPrimary"
            app:title="@string/drawer_item_publisher_customization"
            app:layout_scrollFlags="scroll|enterAlways|snap"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

        <android.support.design.widget.TabLayout
            android:id="@+id/tabLayout"
            app:tabGravity="fill"
            style="@style/DefaultTabLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

</android.support.design.widget.CoordinatorLayout>

toolbar_height 值:

<dimen name="toolbar_height">75dp</dimen>

前绝对高度值(layout_height:"wrap_content"):

绝对高度值后(layout_height:"75dp"):

如果您使用的是主题:.NoActionBar 在您的 onCreate()

中设置
setSupportActionBar(toolbar);

这很奇怪。我正在使用构建工具 25.0.1 并支持 lib 25.1.0。对我来说,接受的答案不是必需的,但菜单项的定义方式需要稍作改动。我需要它:

<menu xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  xmlns:app="http://schemas.android.com/apk/res-auto">
<item
    android:id="@+id/search"
    android:title="@string/search_title"
    android:icon="@drawable/ic_search_24dp"
    app:showAsAction="always|collapseActionView"
    app:actionViewClass="android.widget.SearchView"/>

其中 app:showAsAction 是关键。 Lint 将其标记为红色并告诉我:

Should use android:showAsAction when using the appcompat library.

但是,如果我将它设置为 android:showAsAction,那么搜索视图就不会出现。去图吧。

None 个答案对我有用。我意识到我的情况有点不同。我在片段的 onViewCreated()

中省略了这一行
setHasOptionsMenu(true)

为我工作