如果我更改活动,则SwipeRefreshLayout不再有效,然后返回

时间:2016-08-15 13:22:09

标签: android android-recyclerview refresh swipe swiperefreshlayout

这是我的xml:

<android.support.v4.widget.SwipeRefreshLayout
   android:id="@+id/swipeRefreshLayout"
   android:layout_below="@id/id_bar"
   android:layout_marginBottom="0.5dp"
   android:background="@color/blue"        
   android:layout_width="match_parent"
   android:layout_height="match_parent">

   <FrameLayout
       android:layout_width="match_parent"
       android:layout_height="match_parent">
       <android.support.v7.widget.RecyclerView
           android:id="@+id/list"
           android:dividerHeight="0dp"
           android:layout_gravity="top"
           android:divider="@null"
           android:background="@color/yellow"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           />

       <com.bartoszlipinski.recyclerviewheader2.RecyclerViewHeader
           android:id="@+id/header"
           android:layout_width="match_parent"
           android:layout_height="70dp"
           android:visibility="gone"
           android:layout_gravity="center_horizontal|top">

           <include
               android:id="@+id/header_profile"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:background="@drawable/rounded_top_green"
               layout="@layout/header_profile"/>
       </com.bartoszlipinski.recyclerviewheader2.RecyclerViewHeader>

        <RelativeLayout
            android:id="@+id/placeholderContainer"
            android:layout_width="match_parent"
            android:visibility="gone"
            android:layout_centerHorizontal="true"
            android:gravity="center_horizontal"
            android:layout_height="match_parent">
            <ImageView
                android:id="@+id/placeholderPic"
                android:layout_alignParentTop="true"
                android:layout_marginTop="100dp"
                android:layout_centerHorizontal="true"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/pin_newtrips"/>

            <TextView
                android:id="@+id/placeholderText"
                android:layout_below="@id/placeholderPic"
                android:padding="10dp"
                android:textSize="28dp"
                android:textColor="@color/gray32"
                android:text="@string/home.status.heading.setup"
                android:layout_centerHorizontal="true"
                android:gravity="center_horizontal"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <RelativeLayout
                android:id="@+id/placeholderAddItems"
                android:layout_marginTop="10dp"
                android:layout_below="@id/placeholderText"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"></RelativeLayout>

        </RelativeLayout>
    </FrameLayout>

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

我通过butterknife发起它:

@InjectView(R.id.swipeRefreshLayout) SwipeRefreshLayout mSwipeRefreshLayout;

这是我的refreshListener:

mSwipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
    @Override
    public void onRefresh() {
        // Refresh items
        if(timeLineAdapter!= null)
            timeLineAdapter.setLastAnimatedPosition(0);
            refresh(false);
    }
});

我在onResume上调用它,这样如果我回到它就可以了。 现在最初它可以工作,如果我按下主页按钮然后回来,它可以工作。 如果我将我的活动改为另一个,然后回到它,它就不再有效了。如何解决这个问题?

编辑:正如您所看到的,SwipeRefreshLayout的主要子元素是FrameLayout,其中包含RecyclerView,我的RecyclerViewHeader和列表的占位符(在此处,因为在占位符上向下滑动也应该滑动以刷新。 我在这两个视图之间添加了一个ScrollView,现在可以轻扫一下。但是,在scrollview中使用recyclerview会破坏我的recyclerView。我可以向下滚动但不能向上滚动。还有其他任何想法吗?

1 个答案:

答案 0 :(得分:0)

当我检查是否有要在列表中显示的对象时,我在代码中有timelineList.setVisibility(View.Invisible)。 我删除了它并设置了它:

       if(timeLineAdapter != null) {
        timeLineAdapter.clearItems();
        timeLineAdapter.notifyDataSetChanged();
    }

现在列表没有设置为隐形。 我在SwipeRefreshLayout中添加了我的占位符和列表,认为它可以在两者上工作,但实际上它只适用于列表,因此如果列表消失,则刷新的拉动消失了