React Native中的RefreshContorl下拉刷新使用
我们知道App中都有下拉加载,在React Native中也有类似的控件
一、属性方法
(1) onRefresh function 在视图开始刷新的时候调用
(2) refreshing bool 视图是否在刷新时显示指示器,也表明当前是否在刷新中
(3) colors [ColorPropType] android平台适用 进行设置加载进去指示器的颜色,至少设置一种,最多可以设置4种
(4) enabled bool android平台适用 用来设置下拉刷新功能是否可用
(5) progressBackgroundColor ColorPropType 设置加载进度指示器的背景颜色
(6) size RefreshLayoutConsts.SIZE.DEFAULT android平台适用 加载进度指示器的尺寸大小
(7) tintColor ColorPropType iOS平台适用 设置加载进度指示器的颜色
(8)title string iOS平台适用 设置加载进度指示器下面的标题文本信息
二、使用方法
<ScrollView refreshControl={ <RefreshControl refreshing={this.state.isRefreshing} onRefresh={this._onRefresh} tintColor="#ff0000" title="Loading..." titleColor="#00ff00" colors={['#ff0000', '#00ff00', '#0000ff']} progressBackgroundColor="#ffff00" /> } /> _onRefresh() { this.setState({ isRefreshing:true }); var self = this; setTimeout(()=>{ //加载数据 },2000) }
这样就出现加载效果了
相关推荐
XDgaozhan 2013-07-10
Geeny 2019-10-04
fuzhangandroid 2012-02-03
满城风絮 2011-12-03
Liuser 2016-01-09
Geeny 2019-06-30
leeo00 2017-08-17
lgzaaron 2017-04-25
bill0y 2017-03-18
familynt 2016-01-09
Tom天天 2015-05-09
GuangkuoDing 2015-04-22
Sunanang 2014-11-13
xuguolibeyondboy 2014-08-06
RungBy 2014-07-09
PrisonJoker 2013-07-10
huohu00 2013-02-01
lumitzs 2012-06-17