我尝试在我的活动清单中添加android:windowSoftInputMode="adjustpan"
等,但它对我没有用。这在活动中运行良好,但在片段中不起作用。在片段中,视图将出现在键盘上。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusableInTouchMode="true"
android:fillViewport="true"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/search_layout"
android:layout_below="@+id/view1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:orientation="horizontal">
<AutoCompleteTextView
android:id="@+id/autoCompleteTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:textSize="@dimen/txtsize_14">
</AutoCompleteTextView>
</RelativeLayout>
<ListView
android:layout_below="@+id/view2"
android:id="@+id/listView"
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>