3

私は持っていて、NestedScrollViewそれCollapsingToolbarLayoutをスムーズに動かしたいと思っています。

私の問題は、コンテンツから上にスクロールするときに、折りたたみツールバーが自動展開されず、一番上に来るとブロックされることです。次に、ツールバーを展開するためにもう一度上にスクロールする必要があります。

自動展開するコンテンツから上にスムーズにスクロールしたいCollapsingToolbarLayout

これが私のコードです:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    android:id="@+id/product_detail_main_content"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:apptools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:clipToPadding="true"
            android:foregroundGravity="bottom|right"
            android:foregroundTintMode="add"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <ImageView
                android:id="@+id/image"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                android:scaleType="centerCrop"
                app:layout_collapseMode="parallax"
                app:layout_collapseParallaxMultiplier="0.7"/>

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>

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

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

    <android.support.v4.widget.NestedScrollView
        android:id="@+id/scroll"
        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="wrap_content"
        android:orientation="vertical">

       /*
           CONTENT
       */

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

同様の質問をいくつか見つけましたが、どれもうまくいきませんでした。

4

3 に答える 3

3

LinearLayout 内にはどのようなコンテンツがありますか?

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

   /*
       CONTENT
   */

</LinearLayout>

コンテンツの 1 つが recyclerview の場合、折りたたみツールバーがスクロールに応答しないのは recyclerview からスクロール イベントを受け取ったときにクラスをNestedScrollView呼び出さないためです。AppBarLayout.Behavourつまり、recyclerview でスクロールが発生すると、recyclerview はスクロールの進行状況を にディスパッチ/渡しNestedScrollViewます。NestedScrollViewscroll イベントを受け取りますが、何もしません。

ネストされたscrollviewクラスの内部

@overide
public void onNestedpreScroll(View target,int dx, int dy, int[] consumed){
         //Do nothing
}

これを克服し、recyclerview をスクロールするときに appbarlayout を展開/折りたたむには、NestedScrollView を拡張するカスタム クラスを作成し、上記のメソッドをオーバーライドしてdispatchNestedPreScroll()、appbarlayout にスクロール イベントを通知し、それに応答させるメソッドを呼び出します。

  public class CustomNestedScrollView extends NestedScrollView{

    public CustomNestedScrollView(Context context) {
    super(context);
    }

    public CustomNestedScrollView(Context context, AttributeSet attrs) {
    super(context, attrs);
    }

    public CustomNestedScrollView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    }

  @overide
  public void onNestedPreScroll(View target, int dx, int dy, int[] consumed){
    dispatchNestedPreScroll(dx,dy,consumed,null);
  }
}

そして、このクラスをlayout.xmlで使用します

<com.my.package.CustomNestedScrollView
    android:id="@+id/scroll"
    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="wrap_content"
    android:orientation="vertical">

   /*
       CONTENT
   */

</LinearLayout>

于 2016-05-26T13:17:26.580 に答える