2

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

4

1 に答える 1

10

EditTextのimeOptionsで解決策を見つけたので、

android:imeOptions="flagNoFullscreen"

画面が真ん中になりました:)

<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"
/>
于 2012-11-07T20:01:52.150 に答える