web-dev-qa-db-ja.com

下にスクロールすると、ツールバーが表示される代わりに更新がトリガーされます

新しいCoordinatorLayoutの使用を開始しましたが、次の問題が発生しました。

demo

ツールバーが部分的に表示されていて、recylcerviewが一番上の位置にあるときに下にスクロールしようとすると、ツールバーをプルダウンする代わりに更新イベントがトリガーされます。ユーザーは、それを表示するために、もう一度下にスクロールするよりも上にスクロールする必要があります。

レイアウトXMLは次のようになります。activity_main.xml:

<Android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:fitsSystemWindows="true">

    <Android.support.design.widget.CoordinatorLayout
        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.AppBarLayout
            Android:layout_width="match_parent"
            Android:layout_height="wrap_content">

            <Android.support.v7.widget.Toolbar
                Android:id="@+id/toolbar"
                style="@style/customActionBar"
                Android:layout_width="match_parent"
                Android:layout_height="wrap_content"
                Android:background="?attr/colorPrimary"
                Android:minHeight="?attr/actionBarSize"
                app:layout_scrollFlags="scroll|enterAlways"/>

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

        <FrameLayout
            Android:id="@+id/container"
            Android:layout_width="match_parent"
            Android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    </Android.support.design.widget.CoordinatorLayout>

    <Android.support.design.widget.NavigationView
        Android:id="@+id/navigation_view"
        Android:layout_width="wrap_content"
        Android:layout_height="match_parent"
        Android:layout_gravity="start"
        Android:background="@Android:color/white"
        app:headerLayout="@layout/navigation_drawer_header"
        app:menu="@menu/navigation_items" />

</Android.support.v4.widget.DrawerLayout>

fragment_main.xml:

<FrameLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent">

    <Android.support.v4.widget.SwipeRefreshLayout
        Android:id="@+id/swipe_refresh"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent">

        <Android.support.v7.widget.RecyclerView
            Android:id="@+id/recycler_view"
            Android:layout_width="match_parent"
            Android:layout_height="match_parent"
            Android:clipToPadding="false"
            Android:padding="8dp"
            Android:scrollbars="none" />

    </Android.support.v4.widget.SwipeRefreshLayout>

</FrameLayout>

アプリのフラグメントにはさらに多くの要素があるため、SwipeRefreshLayoutはFrameLayoutにあります。

どんな助けでもいただければ幸いです。

23
Longi

UPDATE:この問題は、サポートライブラリv23.1.1で修正されています。

AppBarLayout.OnOffsetChangedListenerを使用して、SwipeRefreshLayoutオフセットが変更されたときに、AppBarLayoutを有効/無効にする必要があるようです。

https://stackoverflow.com/a/30822119/79582 を参照してください

9
Simon Reggiani

手遅れかもしれませんが、それはどんな新参者にも役立つかもしれません、私はそのための簡単な解決策を思いつきました。 classを拡張するカスタムSwipeRefreshLayoutを作成することにより、AppBaLayoutが存在する場所ならどこでも使用できます。以下のコードに従ってください。

    public class MySwipeLayout extends SwipeRefreshLayout implements AppBarLayout.OnOffsetChangedListener {
        private AppBarLayout appBarLayout;

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

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

        @Override
        protected void onAttachedToWindow() {
            super.onAttachedToWindow();
            if (getContext() instanceof Activity) {
                appBarLayout = (AppBarLayout) ((Activity) getContext()).findViewById(R.id.appbar);
                appBarLayout.addOnOffsetChangedListener(this);
            }
        }

        @Override
        protected void onDetachedFromWindow() {
          if(appBarLayout!=null){
            appBarLayout.removeOnOffsetChangedListener(this);
            appBarLayout = null;
          }
          super.onDetachedFromWindow();
        }

        @Override
        public void onOffsetChanged(AppBarLayout appBarLayout, int i) {
            this.setEnabled(i == 0);
        }
    }
10
k0sh