所以我有一个listview,其上面有一个edittext,允许用户在listview中搜索内容。不幸的是,我遇到了一个奇怪的问题,通过点击EditText打开键盘,ListView缩小到未被键盘阻挡的屏幕。这很好,但当我关闭键盘时,ListView保持相同的半屏尺寸,键盘所在的空间现在完全空白且没用。
有人知道如何解决这个问题吗?这让我感到非常悲伤,我似乎无法弄明白。
这是我的片段布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginTop="30dp">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word_search"
android:inputType="text"
android:layout_gravity="center"
android:imeOptions="actionSearch"
android:hint="Enter a word you'd like to search"/>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/words_list"/>
</LinearLayout>
此片段包含在此viewpager布局中:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
style="@style/MyCustomTabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:elevation="6dp"
app:rippleColor="#33FFFFFF"
app:borderWidth="0dp"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
android:src="@drawable/save"/>
</android.support.design.widget.CoordinatorLayout>
有没有人知道发生了什么?理想情况下,我想将ListView的大小设置为静态,以便在键盘拉起时不会重绘,但是当keybaord关闭时,我会接受listview的大小恢复正常。
谢谢!