我正在使用android数据绑定库.
如果我想让视图可见,我可以写这样的东西:
<TextVIEw androID:ID="@+ID/label_status" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:gravity="center" androID:text="@{habitListviewmodel.message}" app:visibility="@{habitListviewmodel.hasError ? VIEw.VISIBLE : VIEw.GONE}" />
是否有以类似(xml)方式绑定到swipeRefreshLayout的刷新属性的选项?
目前我通过调用setRefreshing(true / false)在代码中设置它,但是希望在xml中使它保持一致.
解决方法:
更新:
由于数据绑定映射从xml属性名称到set {Attributename},你可以使用app:refresh,因为数据绑定将成功地为swipeRefreshLayout的setRefreshing方法提供值(幸运的是我们存在且是公共的):
<androID.support.v4.Widget.SwipeRefreshLayout xmlns:app="http://schemas.androID.com/apk/res-auto" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" app:refreshing="@{habitListviewmodel.isLoading}"> ... //ListVIEw,RecyclerVIEw or something</androID.support.v4.Widget.SwipeRefreshLayout>
而已!请注意,您只需使用@ {true}或@ {false}而不是@ {habitListviewmodel.isLoading}.希望有所帮助.
总结以上是内存溢出为你收集整理的如何使用android数据绑定设置SwipeRefreshLayout刷新属性?全部内容,希望文章能够帮你解决如何使用android数据绑定设置SwipeRefreshLayout刷新属性?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)