6

私のアプリでは、CollapsingToolbarLayout次のNestedScrollView内部を使用していますSwipeRefreshLayout。私が欲しいのSwipeRefreshLayoutは、からのスワイプを検出することですCollapsingToolbarLayoutが、からのスワイプを検出し、NestedScrollViewスワイプを無視しCollapsingToolbarLayoutます。ここに私のXMLがあります:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/rootLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v4.widget.SwipeRefreshLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/swipe"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

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

                <android.support.design.widget.CollapsingToolbarLayout
                    android:id="@+id/collapsingToolbarLayout"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    app:contentScrim="?attr/colorPrimary"
                    app:expandedTitleMarginStart="@dimen/expanded_toolbar_title_margin_start"
                    app:layout_scrollFlags="scroll|exitUntilCollapsed">

                    <ImageView
                        android:id="@+id/profilePic"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:scaleType="centerCrop"
                        android:src="@drawable/ic_split_big_profile"
                        app:layout_collapseMode="parallax"
                        app:layout_collapseParallaxMultiplier="0.7" />

                    <include
                        android:id="@+id/toolbar_layout"
                        layout="@layout/toolbar"
                        android:layout_width="match_parent"
                        android:layout_height="?attr/actionBarSize"
                        app:layout_collapseMode="pin"
                        app:layout_scrollFlags="scroll|enterAlways" />

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

            <android.support.v4.widget.NestedScrollView
                android:id="@+id/transactions_scroll"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="500dp">
                </RelativeLayout>
            </android.support.v4.widget.NestedScrollView>

            <android.support.design.widget.FloatingActionButton
                android:id="@+id/add_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom|right"
                android:layout_marginBottom="@dimen/fab_margin_bottom"
                android:layout_marginRight="@dimen/fab_margin_right"
                android:onClick="addTxn"
                android:src="@drawable/ic_action_add_transaction_light"
                app:elevation="6dp"
                app:fabSize="normal" />

        </android.support.v4.widget.SwipeRefreshLayout>
    </android.support.design.widget.CoordinatorLayout>
</RelativeLayout>

誰かがこの種のものを使用したことがありますか?

4

1 に答える 1

5

AppBarLayout docsに記載されているように、CoordinatorLayout の直接の子である必要があります。

このビューは、CoordinatorLayout 内で直接の子として使用されることに大きく依存しています。別の ViewGroup 内で AppBarLayout を使用すると、その機能のほとんどが機能しなくなります。

したがって、NestedScrollView も直接の子である必要があるため、CollapsingToolbar と連携するために SwipeToRefreshLayout を含める必要がある場所がわかりません。

これは、SwipeRefreshLayout をアタッチして、appBar が折りたたまれていない場合にのみアクティブにするのに役立つ別の応答ですが、NestedScrollView を使用していないため、私には機能しません :(


EDIT私は私の問題の解決策を見つけました:私が使用したListViewは、NestedScrollView内に配置するのではなく、ネストされたスクロールとして設定するか、RecycleViewに置き換える必要がありました:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
     listView.setNestedScrollingEnabled(true);
}

したがって、問題の解決策は、NestedScrollView を SwipeRefreshLayout 内にラップすることです。

于 2015-08-27T14:46:56.870 に答える