Android:横向搜索工具
Posted
技术标签:
【中文标题】Android:横向搜索工具【英文标题】:Android: Search Tool in landscape orientation 【发布时间】:2017-09-17 10:31:41 【问题描述】:StatusBar 中的搜索工具在横向时完全改变。
只有在搜索栏展开时才会发生这种情况。
请看截图。
编辑
代码:
@Override
public boolean onCreateOptionsMenu(Menu menu)
getMenuInflater().inflate(R.menu.action_menu, menu);
SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
SearchView searchView = (SearchView) menu.findItem(R.id.search).getActionView();
int options = searchView.getImeOptions();
searchView.setImeOptions(options| EditorInfo.IME_FLAG_NO_EXTRACT_UI);
searchView.setSearchableInfo( searchManager.getSearchableInfo(getComponentName()) );
searchView.setIconified(true);
searchView.clearFocus();
return true;
XML:
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:label="@string/app_name"
android:searchSuggestAuthority="Search in a Collection/Book or Favorites"
/>
还有菜单
<item
android:id="@+id/search"
app:actionViewClass="android.support.v7.widget.SearchView"
app:showAsAction="ifRoom"
android:title="Search in a Collection/Book or Favorites"/>
【问题讨论】:
你试过这个吗:***.com/questions/6075719/… 还有这个:***.com/questions/31456029/… 它们似乎都不适合我。 【参考方案1】:终于修好了。如果您使用widget
SearchView
,请将android:imeOptions="actionSearch|flagNoExtractUi|flagNoFullscreen"
放入您的SEARCHABLE xml。
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:label="@string/app_name"
android:imeOptions="actionSearch|flagNoExtractUi|flagNoFullscreen"
/>
【讨论】:
以上是关于Android:横向搜索工具的主要内容,如果未能解决你的问题,请参考以下文章