在RecyclerView之后,ProgressBar不可见

时间:2016-01-26 16:41:38

标签: android android-fragments progress-bar

我想在使用RecyclerView加载更多数据时在列表末尾显示进度条。仅仅为了测试,我将它设置为始终可见,但它根本不可见。我试图把它放在一个LinearLayout中,但那没有用。

这是我的片段:

$base

片段加载在viewpager中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_gravity="center_vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:minWidth="25px"
    android:minHeight="25px">
    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/latestnews_swipe_refresh_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerView_latestnews"
            android:scrollbars="vertical"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />
    </android.support.v4.widget.SwipeRefreshLayout>
    <ProgressBar
        android:id="@+id/loadmore_progressBar"
        android:layout_width="45dp"
        android:layout_height="45dp"
        android:indeterminate="true"
        android:layout_gravity="center"
        android:visibility="visible" />
</LinearLayout>

2 个答案:

答案 0 :(得分:2)

如果您将根布局更改为RelativeLayout,那么它非常简单:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25dp"
android:minHeight="25dp">

<android.support.v4.widget.SwipeRefreshLayout
    android:id="@+id/latestnews_swipe_refresh_layout"
    android:layout_above="@id/loadmore_progressBar"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

<ProgressBar
    android:id="@+id/loadmore_progressBar"
    android:layout_width="45dp"
    android:layout_height="45dp"
    android:indeterminate="true"
    android:visibility="visible"
    android:layout_alignParentBottom="true"
    android:layout_centerInParent="true"/>
</RelativeLayout>

在我看来,虽然通过适配器将ProgressBar放入RecyclerView,它看起来更好但是chocie是你的。

答案 1 :(得分:0)

RecyclerView的高度无法设置为此question中所述的wrap_content,因此它不会留下任何空间来显示ProgressBar。您需要设置自定义LayoutManager才能执行此操作。

您还可以在此other question中找到一些示例,它似乎只是解决您的问题。