SwipeRefreshLayout隐藏了RecyclerView的上半部分?

时间:2016-12-04 21:03:23

标签: android android-recyclerview swiperefreshlayout

我是android的初学者,我不知道为什么会这样。 如果没有SwipeRefreshLayout,RecyclerView完全可见,但使用SwipeRefreshLayout时,第一项不会显示。

也许它在工具栏下面? (隐藏的项目存在,我通过多种方式进行了检查。)

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

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

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

列表:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:paddingTop="8dip"
    android:paddingBottom="8dip"
    android:paddingLeft="16dip"
    android:paddingRight="16dip"
    android:weightSum="10"
    android:gravity="center">


    <ImageView
        android:id="@+id/CharacterItemRankImageView"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_weight="0"
        android:src="@drawable/challengemode_medal_bronze"/>

    <TextView android:id="@+id/CharacterItemNameTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="3.5"
        tools:text="Name"/>


    <TextView android:id="@+id/CharacterItemPointsTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAlignment="center"
        android:layout_weight="6"
        tools:text="Points"/>

    <ImageButton
        android:id="@+id/CharacterItemRemoveButton"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_weight="0.5"
        android:src="@drawable/ic_delete_grey600_48dp"
        android:scaleType="fitXY" style="@style/Widget.AppCompat.Button.Borderless" />

</LinearLayout>

Without Swipe

With Swipe

1 个答案:

答案 0 :(得分:3)

我猜您使用的是CoordinatorLayout作为视图的根目录。在这种情况下,发生的事情是工具栏被RecyclerView的第一项隐藏。

要解决此问题,您只需将布局行为添加到SwipeRefreshLayout并从RecyclerView中删除。

<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_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/MainRecyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </android.support.v7.widget.RecyclerView>

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