swipeRefreshLayout

【SwipeRefreshLayout】Google官方下拉刷新

2016-03-24  本文已影响4158人  jackLee

是否还为ListView的下拉刷新而感到困扰?是否还在寻找第三方的下拉刷新的库?不用慌,Google出了自己的下拉刷新控件了。

关于SwipeRefreshLayout


Demo:

<pre>
mainlayout.xml布局文件:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:ignore="MergeRootFrame" >
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</android.support.v4.widget.SwipeRefreshLayout>
</FrameLayout>
</pre>


参考文档:

关注我学习更多技术哦

学习更多技术
上一篇下一篇

猜你喜欢

热点阅读