3

我有一个view其中包含一个CoordinatorLayout包装一个AppBarLayout和一个NestedScrollView。里面NestedScrollView有一个EditText

我在显示软输入键盘和正确调整view.

使用通常的标志android:windowSoftInputMode="adjustResize",除了隐藏输入之外,一切似乎都可以正常工作。

随着输入打开(图 2),NestedScrollView(带有无聊的灰色背景)已经缩小,因此您可以滚动到之前“覆盖”的部分。都好。然而,一旦输入被隐藏(图 3),NestedScrollView并没有增长到重新填充空间,您可以看到它的父级CoordinatorLayout(我已将其涂成红色)。

在此处输入图像描述 在此处输入图像描述 在此处输入图像描述

我已经尝试过这个答案https://stackoverflow.com/a/31286789/726954,添加了一个神秘的android:layout_gravity="fill_vertical"标签,但这所做的只是限制了NestedScrollView最终切断子元素的高度(尽管它确实解决了它拒绝的问题重新装满它的容器)。

我错过了什么还是这是一个错误CoordinatorLayout

这是我的 XML 模型:

<?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:background="@color/red_granate">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/actionBarContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true">

        <View
            android:id="@+id/statusBarPadding"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:background="@color/primary_material_dark"/>

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            android:background="@color/primary_material_dark"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:layout_scrollFlags="scroll|enterAlways"/>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:background="@color/grey"
        android:id="@+id/nestedScrollView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="2000dp">

            <EditText
                android:layout_width="100dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="1900dp"/>
        </FrameLayout>
    </android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
4

1 回答 1

4

您使用的是最新版本 - 22.2.1 吗?我对 22.2.0 也有类似的问题。

compile 'com.android.support:design:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'
于 2015-08-18T15:06:22.337 回答