早安先生
我能够重现WhatsApp搜索栏,如下图所示:
为此,我创建了两个工具栏和两个菜单,如下所示:
menu_item.xml
<?xml version="1.0" encoding="utf-8"?>
<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"
android:title="@string/action_search"
app:showAsAction="always" />
</menu>
menu_search.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_filter_search"
android:icon="@drawable/ic_search"
android:title="Search"
app:actionViewClass="android.support.v7.widget.SearchView"
app:showAsAction="collapseActionView|always" />
</menu>
activity_main.xml中的工具栏
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentTop="true"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
android:fitsSystemWindows="true"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
search_toolbar.xml中的工具栏
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/searchtoolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentTop="true"
app:layout_scrollFlags="scroll|enterAlways"
android:background="@color/colorTextPrimary"
android:fitsSystemWindows="true"
app:collapseIcon="@drawable/ic_arrow_back"
app:titleTextColor="@color/colorPrimary"
/>
我实现了SearchRecentSuggestions但它没有用,做了一些测试我看到它只在我在onCreateMenuOptions中直接使用menu_search中的inflate时才有效,但是,我最终失去了动画,因为它显示在图像中下面:
使用的代码
@Override
public boolean onCreateOptionsMenu(final Menu menu) {
getMenuInflater().inflate(R.menu.menu_search, menu);
SearchManager searchManager=(SearchManager)getSystemService(Context.SEARCH_SERVICE);
SearchView searchView = (SearchView) menu.findItem(R.id.action_filter_search).getActionView();
sView = searchView;
searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
searchView.setMaxWidth(Integer.MAX_VALUE);
return super.onCreateOptionsMenu(menu);
}
我试图在menu_items之后给menu_search充气,但也没有得到预期的结果。
@Override
public boolean onCreateOptionsMenu(final Menu menu) {
getMenuInflater().inflate(R.menu.menu_items, menu);
Toolbar searchTool = findViewById(R.id.searchtoolbar);
searchTool.inflateMenu(R.menu.menu_search);
Menu searchM = searchTool.getMenu();
SearchView itemS = (SearchView)searchM.findItem(R.id.action_filter_search).getActionView();
SearchManager searchManager=(SearchManager)getSystemService(Context.SEARCH_SERVICE);
sView = itemS;
itemS.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
itemS.setMaxWidth(Integer.MAX_VALUE);
return true;
}
进行分析我可以看到它没有注册我在SearchView中输入的内容,因为在我从正常测试返回后,在注册几个单词后,它们出现在带有动画的设计中。
我是否有可能在第二个工具栏中充气两个菜单或启用此注册表并实现此目的?
感谢您的帮助
答案 0 :(得分:0)
我找到了解决这个问题的方法。
首先,不可能在onCreateMenuOptions中膨胀两个菜单,所以要在这种情况下实现SearchSuggestion的行为,只在我的案例中创建一个方法handleSearch并放入SearchListener,搜索建议的问题将得到解决。