検索ビューをランドスケープで完全に展開し、アクティビティの作成時にアクション ビューを既に展開するためのソリューションを見つけました。ここでそれがどのように機能するか:
1.まず、res-menu フォルダーに xml ファイルを作成します (例: searchview_in_menu.xml)。ここでは、次のコードがあります。
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@+id/action_search"
android:title="@string/search"
android:icon="@android:drawable/ic_menu_search"
android:actionLayout="@layout/searchview_layout" />
</menu>
注: "@string/search" - res-strings.xml では次のようになります。
<string name="search">Search</string>
2.次に、上記のレイアウト (「@layout/searchview_layout」) を res-layout フォルダーに作成します。新しいレイアウト: searchview_layout.xml は次のようになります。
<?xml version="1.0" encoding="utf-8"?>
<SearchView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/search_view_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
注: ここでは、親の幅と一致するように検索ビューの幅を設定しています (android:layout_width="match_parent")
3. MainActivity クラスまたは検索ビューを実装する必要があるアクティビティで、 onCreateOptionsMenu() メソッドに次のコードを記述します。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.searchview_in_menu, menu);
//find the search view item and inflate it in the menu layout
MenuItem searchItem = menu.findItem(R.id.action_search);
mSearchView = (SearchView) searchItem.getActionView();
//set a hint on the search view (optional)
mSearchView.setQueryHint(getString(R.string.search));
//these flags together with the search view layout expand the search view in the landscape mode
searchItem.setShowAsActionFlags(MenuItem.SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW
| MenuItem.SHOW_AS_ACTION_ALWAYS);
//expand the search view when entering the activity(optional)
searchItem.expandActionView();
return true;
}