swiperefreshlayout recycleler视图没有拉下来

时间:2015-02-23 06:44:46

标签: android android-recyclerview swiperefreshlayout

我正在尝试将SwipeRefreshLayout实现到RecyclerView。我的问题是在刷新手势期间RecyclerView本身没有拉下来。同样,当我获得刷新图标时,RecyclerView仍然保持静止。有人可以帮助我让recyclerview向下滑动一点以便刷新。

这是设计

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context="${relativePackage}.${activityClass}">

<android.support.v4.widget.SwipeRefreshLayout
    android:id="@+id/refreshMeeting"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

<android.support.v7.widget.RecyclerView
    android:id="@+id/my_recycler_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbars="vertical" />
</android.support.v4.widget.SwipeRefreshLayout>

</RelativeLayout>

0 个答案:

没有答案