协调器布局中的ActionBar在自定义搜索视图焦点上消失

时间:2015-07-16 20:12:32

标签: android searchview android-coordinatorlayout

所以,我在这个论坛上已经看到了各种各样的问题,并尝试了许多解决方案,但迄今为止都没有。此外,以前都没有使用过协调器布局。基本上我在操作栏之外有一个自定义搜索视图,可在recylerview列表中搜索。但是,在SearchView焦点上,软键盘会打开并隐藏整个ActionBar和recyclerview顶部的某些部分,即使在键盘未关闭之前,它也不会显示在滚动状态。 xml代码如下所示,可以根据要求发布任何其他代码。

编辑:在清单中使用adjustResize解决了隐藏的Actionbar的问题,但是一旦键盘被丢弃,会留下四分之一大小的空白。可能是因为它也在重新调整Recyclerview的大小?

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:layout_scrollFlags="scroll|enterAlways" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="36dp"
        android:paddingLeft="6dp"
        app:tabMode="scrollable"/>

</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"
    android:layout_gravity="end|bottom"
    android:layout_margin="@dimen/fab_margin"
    android:src="@drawable/ic_done" />

<SearchView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="end|bottom"
    android:background="@color/gray2Background"
    android:iconifiedByDefault="false"
    android:layout_marginLeft="36dp"
    android:layout_marginBottom="20dp"
    android:layout_marginRight="36dp"></SearchView>

1 个答案:

答案 0 :(得分:0)

在清单中尝试在活动中添加此行:

android:windowSoftInputMode="adjustPan|adjustNothing"

这可能会有所帮助。