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- 画面をタッチしたりスクロールしたりすると、スクロールが適切になります。
助けてください。私は何日もこれを修正しようとしてきました。ありがとう。