Javier
Javier

Reputation: 1695

Show SoftKeyboard in landscape but not entire screen

Im trying to achieve something like this image: enter image description here

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

Upvotes: 2

Views: 2658

Answers (1)

Javier
Javier

Reputation: 1695

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"
/>

Upvotes: 10

Related Questions