1

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

编辑:在清单中使用 adjustResize 解决了隐藏操作栏的问题,但是一旦丢弃键盘,就会留下屏幕大小的四分之一的空白。可能是因为它也在调整 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>

4

1 回答 1

0

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

android:windowSoftInputMode="adjustPan|adjustNothing"

这可能会有所帮助。

于 2016-06-14T11:26:00.467 回答