64

CoordinatorLayout の使用について Google ドキュメントに従おうとしていますが、CoordinatorLayout 内の ScrollView に問題があります。基本的に、ツールバーは通常、下にスクロールするときに RecyclerView または Listview で折りたたまれます。ScrollView を使用すると、折りたたまれなくなりました。

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        >

        <TextView
            android:id="@+id/tv_View"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:gravity="center"
            android:text="@string/filler"
            style="@style/TextAppearance.AppCompat.Large"
            />

    </ScrollView>

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"
            />

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

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

5 に答える 5

155

ScrollViewと連携しませんCoordinatorLayoutNestedScrollView代わりに使用する必要がありますScrollView

于 2015-06-04T14:36:59.460 に答える
36

Use NestedScrollView to collapse your scrollview as a child of Coordinator Layout. Replace your code with this code:

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
                 android:layout_height="match_parent"
                 app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

        <TextView
            android:id="@+id/tv_View"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:gravity="center"
            android:text="@string/filler"
            style="@style/TextAppearance.AppCompat.Large"
            />

    </LinearLayout>
    </android.support.v4.widget.NestedScrollView>

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"
            />

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

    </android.support.design.widget.CoordinatorLayout>
于 2015-06-18T06:08:53.423 に答える
2

を使用する場合NestedScrollViewは、レギュラーの代わりに a を使用してください。ScrollViewCoordinatorLayout

スクロールを行うには、子レイアウトの最小の高さ を *1000dpに設定することで、スクロール動作をトリガーCollapsingToolbarLayoutできます。NestedScrollView

android:minHeight="1000dp"

レイアウト:

<android.support.v4.widget.NestedScrollView
app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <!--to trigger scroll behavior-->
    <LinearLayout android:minHeight="1000dp"/>

</android.support.v4.widget.NestedScrollView>

*SupportDesignDemos の例: https://github.com/android/platform_development/blob/master/samples/SupportDesignDemos/res/layout/include_appbar_scrollview.xml

于 2015-11-22T18:04:16.070 に答える
1

実際の答えは、 NestedScrollingChildインターフェイスを実装していないため、CoordinatorLayoutでは機能しないはずです。with実装です。ネストされたスクロールについて詳しく知りたい場合は、ブログ投稿を作成しました。ScrollViewScrollViewNestedScrollViewScrollViewNestedScrollingChild

于 2015-10-19T15:29:44.520 に答える