我一直在尝试在我的Android应用程序中使用协调器布局。我有一个应用程序栏布局和一个在协调器布局中的嵌套滚动 View 。在我的嵌套滚动 View 中,我有一个animateLayoutChanges为true的线性布局。

我的问题是,当使项目的可见性变为“可见”时,线性布局的高度增加时,线性布局就会进入“应用栏布局”下。仅在单击屏幕或滚动后,才会发生适当的滚动效果。

我创建了一个简单的应用程序来显示该问题。下面是布局。

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:animateLayoutChanges="true"
    tools:context="testapp.test.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBar"
        android:animateLayoutChanges="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:animateLayoutChanges="true"
            app:layout_scrollFlags="scroll|enterAlways|snap"
            app:popupTheme="@style/AppTheme.PopupOverlay">

        </android.support.v7.widget.Toolbar>

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:animateLayoutChanges="true">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Show"
            android:id="@+id/test_Button"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Hide"
            android:id="@+id/test_Button2"/>
        <TextView
            android:id="@+id/test_tv"
            android:layout_width="match_parent"
            android:layout_height="300dp"
            android:visibility="gone"
            android:background="@color/colorAccent"/>
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

在单击显示按钮的过程中,我使Textview可见。请看图片以了解我的问题。

图片1-初始状态。

图片2-这是问题所在。我单击了显示。现在,由于动画的动 Canvas 局更改,线性布局已移动到“应用栏布局”下。如您所见,“显示”按钮已在“应用程序栏”下移动。

图片3-现在,当我触摸屏幕或滚动时,滚动就变得正确了。

请帮忙。我已经尝试了好几天了。谢谢。

Android:animateLayoutChanges无法与CoordinatorLayout一起正常使用-LMLPHP

Android:animateLayoutChanges无法与CoordinatorLayout一起正常使用-LMLPHP
Android:animateLayoutChanges无法与CoordinatorLayout一起正常使用-LMLPHP

最佳答案

我遇到了同样的问题:NestedScrollView包含带有animateLayoutChanges设置为true的LinearLayout的内容时,导致滚动问题。就我而言,内容在appBarLayout下滑动。

此错误在此处记录为issue 180504。看来,现在支持库23.2.0中的问题已修复,这意味着更新该代码应该可以解决问题:

ext {
    supportLibraryVersion = "23.2.0"
}

dependencies {
    ...

    // this is the primary dependency for coordinator layout
    // but, of course, update all that depend on the support library
    // note: the design library depends on the Support v4 and AppCompat Support Libraries
    //       those will be included automatically when you add the Design library dependency
    compile "com.android.support:design:$supportLibraryVersion"

    ...
}

10-08 07:30