1

そのため、このフォーラムでさまざまな質問を見て、多くの解決策を試しましたが、これまでのところうまくいきませんでした. また、以前は Coordinator Layout を使用していませんでした。基本的に、recylerview リスト内を検索するアクションバーの外にカスタム searchview があります。ただし、SearchView にフォーカスがあると、ソフトキーボードが開き、ActionBar 全体と recyclerview の上部の一部が非表示になり、キーボードが閉じられるまでスクロールしても表示されません。xml コードは次のとおりです。その他のコードは、リクエストに応じて投稿できます。

編集:マニフェストでadjustResizeを使用すると、非表示のアクションバーの問題が解決されますが、キーボードが破棄されると、画面のサイズの4分の1の空白が残ります。おそらく、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 に答える