问题
Im trying to achieve something like this image:
the problem its when im on landscape and put a searchbar like the image, the soft keyboard cover all screen,and i want the behavior like the image i tried
android:windowSoftInputMode="adjustPan|adjustResize"
and seems isnt working,at least on jelly bean. any ideas? Thanks
回答1:
i found the solution, in imeOptions of EditText, so i used
android:imeOptions="flagNoFullscreen"
so the screen now its in middle :)
<EditText
android:id="@+id/txt_search"
android:inputType="text"
android:imeOptions="flagNoFullscreen"
android:hint="@string/hint_search"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
来源:https://stackoverflow.com/questions/13277177/show-softkeyboard-in-landscape-but-not-entire-screen