6

Android アプリで Coordinator Layout を使用しようとしています。コーディネーター レイアウトにアプリ バー レイアウトとネストされたスクロール ビューがあります。ネストされたスクロール ビューには、animateLayoutChanges が true の線形レイアウトがあります。

私の問題は、アイテムを表示可能にすると、線形レイアウトの高さが増加すると、線形レイアウトが Appbar Layout の下に移動することです。画面をクリックするかスクロールした後にのみ、適切なスクロール効果が発生します。

問題を表示するための簡単なアプリケーションを作成しました。以下はレイアウトです。

<?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-ここに問題があります。[表示] をクリックしました。Animate レイアウトの変更によるアニメーションにより、Linear レイアウトが App Bar Layout の下に移動しました。ご覧のとおり、Show ボタンは App Bar の下に移動しました。

写真 3- 画面をタッチしたりスクロールしたりすると、スクロールが適切になります。

助けてください。私は何日もこれを修正しようとしてきました。ありがとう。

初期状態。

これが問題です。 [表示] をクリックしました。 アニメーションにより、リニア レイアウトがアプリ バー レイアウトの下に移動しました。 画面をタッチしたりスクロールしたりすると、スクロールが適切になります。

4

1 に答える 1

5

この同じ問題が発生していました: animateLayoutChanges が true に設定された LinearLayout を含む NestedScrollView が、コンテンツでスクロールの問題を引き起こしていました。私の場合、コンテンツは appBarLayout の下にスライドしていました。

このバグは問題 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"

    ...
}
于 2016-04-07T23:02:20.943 に答える