在片段

时间:2015-12-28 09:42:19

标签: android facebook android-fragments android-activity swiperefreshlayout

刷新Facebook页面时,SwipeRefreshLayout似乎放在活动类中,并从屏幕顶部显示:

swipetorefresh

其下方似乎是RecyclerView的内容已刷新。在SwipeRefreshLayout激活自身之前,您还需要一直向上滚动到屏幕顶部 - 所以如果工具栏中的ImageView没有显示在屏幕顶部,那么当你向下滑动,实际上只是滚动RecyclerView。在下面的屏幕截图中,我们可以看到顶部ImageView不可见,因此我们只是滚动我们的Recyclerview。

below is a scroll

我尝试在我的应用中实现类似的功能,在xml中执行以下操作,这与我上面发布的第一个Facebook屏幕截图类似 - 我的活动有' swipeRefresh圆圈图标'从顶部出来并遵循标准布局xml来设置toolbar ImageView

主要活动XML:

<android.support.v4.widget.SwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/swipeContainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/appbar"
            >

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/collapsing_toolbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:contentScrim="?attr/colorPrimary"
                android:background="@color/white"
                app:expandedTitleTextAppearance="@color/transparent"
                app:layout_scrollFlags="scroll|exitUntilCollapsed"
                >

                    <ImageView
                        android:id="@+id/backdrop"
                        android:contentDescription="@string/photo"
                        android:layout_width="match_parent"
                        android:background="@color/white"
                        android:layout_height="192dp"
                        android:scaleType="centerCrop"
                        android:fitsSystemWindows="true"
                        />

                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    app:layout_collapseMode="pin"/>

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

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

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

                <android.support.v4.widget.NestedScrollView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:fillViewport="true"
                    >
                </android.support.v4.widget.NestedScrollView>

            </FrameLayout>

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

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

然而,SwipeRefreshLayout充分关注活动,包括我Fragment中我在嵌套到我的主要活动xml中FrameLayout内膨胀的Fragment中的任何滚动操作。我膨胀的RecyclerViewRecyclerView,其上下滚动类似于Facebook的SwipeRefreshLayout

为了摆脱这个问题,我知道我可以从我的Activity xml中删除Fragment并将其放在我的SwipeRefreshLayout xml中,但是我的SwipeRefresh圈子图标将会只能从屏幕的末尾而不是顶部开始。

不确定Facebook如何阻止SwipeRefreshLayout完全关注所有滚动操作 - 是否有人知道他们如何实施他们的<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/snackbarPosition"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/post_container" android:background="#E0E0E0"> <ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/progresswheel" android:layout_margin="32dp" android:layout_centerHorizontal="true" android:visibility="gone" tools:visibility="visible"/> <android.support.v7.widget.RecyclerView android:id="@+id/my_recycler_view" android:scrollbars="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> </android.support.v7.widget.RecyclerView> </RelativeLayout> </android.support.design.widget.CoordinatorLayout>

这是我的片段xml代码:

git checkout master
git reset --hard HEAD^^
git merge new-feature

1 个答案:

答案 0 :(得分:4)

好的 - 我终于想通了。

这并不容易,但解决方案实际上是取出片段类并用普通的Recyclerview替换它。

在XML中:

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


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

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/coordinatorlayout"
        android:fitsSystemWindows="true"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:android="http://schemas.android.com/apk/res/android">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/appbar"
            android:fitsSystemWindows="true"
            >
            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/collapsing_toolbar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:contentScrim="?attr/colorPrimary"
                android:background="@color/white"
                app:expandedTitleMarginStart="48dp"
                app:expandedTitleMarginEnd="64dp"
                android:fitsSystemWindows="true"
                app:expandedTitleTextAppearance="@color/transparent"
                app:layout_scrollFlags="scroll|exitUntilCollapsed"
                >

                    <ImageView
                        android:layout_width="match_parent"
                        android:layout_height="300dp"
                        android:scaleType="centerCrop"
                        android:fitsSystemWindows="true"
                        android:id="@+id/photo"
                        app:layout_collapseMode="parallax"
                        android:src="@drawable/hand_gestures"/>

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


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

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

        <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:fitsSystemWindows="true"
            android:fillViewport="true"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:layout_height="match_parent"
            android:id="@+id/recyclerview">

        </android.support.v7.widget.RecyclerView>

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

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

然后您需要按照此主题的解决方案:Android: CollapsingToolbarLayout and SwipeRefreshLayout get stuck以使swipeToRefreshLayout正常工作。

您可以通过执行以下操作来完成此操作 - 从线程中复制:

片段/活动中的

使其实现AppBarLayout.OnOffsetChangedListener(现在,当工具栏完全展开时,将启用刷新):

@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
    if (collapsingToolbarLayout.getHeight() + verticalOffset < 2 * ViewCompat.getMinimumHeight(collapsingToolbarLayout)) {
        swipeRefreshLayout.setEnabled(false);
    } else {
        swipeRefreshLayout.setEnabled(true);
    }
}

覆盖onPause()&amp; onResume()与@blackcj一样回答:

@Override
public void onResume() {
    super.onResume();
    appBarLayout.addOnOffsetChangedListener(this);
}

@Override
public void onPause() {
    super.onPause();
    appBarLayout.removeOnOffsetChangedListener(this);
}

然后将LinearLayoutManager设置为recyclerView:

LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity());
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
recyclerView.setLayoutManager(layoutManager);

对我而言,这就像一个魅力,第一个appBarlayout被扩展,只有swipeRefreshLayout触发刷新。