Android: Search Tool In Landscape Orientation
The Search Tool in StatusBar changes completely when in Landscape orientation. It happens only when Search Bar is expanded. Please see the screenshots. EDIT CODE: @Override pub
Solution 1:
Finally fixed it. Put android:imeOptions="actionSearch|flagNoExtractUi|flagNoFullscreen"
in your SEARCHABLE xml if you are using widget
SearchView
.
<?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"
/>
Post a Comment for "Android: Search Tool In Landscape Orientation"