创建一个圆形背景的循环进度条

时间:2015-03-20 12:36:21

标签: android xml android-progressbar

see this Image

我想创建一个新的向下刷新进度条。内部旋转的圆圈和箭头,如 Gmail 应用程序。样本图像如上所示。

1 个答案:

答案 0 :(得分:0)

其中称为向下刷新,要实现此功能,您必须使用 android.support.v4.widget.SwipeRefreshLayout

我们需要做的第一件事是将支持库添加到我们的应用程序的build.gradle文件中。

compile 'com.android.support:support-v4:21.0.+'

然后我们必须创建这样的布局。

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

        <ListView
            android:id="@+id/activity_main_listview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            >
        </ListView>

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

您可以使用代码找到一个很棒的教程here