我试图实现像这样的图像:
问题是当我在风景上并放置像图像的搜索栏时,软键盘覆盖所有屏幕,我想要的行为就像我试过的图像
android:windowSoftInputMode="adjustPan|adjustResize"
似乎不起作用,至少在果冻豆上。有任何想法吗? 感谢
答案 0 :(得分:9)
我在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"
/>