如何使用android数据绑定设置SwipeRefreshLayout刷新属性?

如何使用android数据绑定设置SwipeRefreshLayout刷新属性?,第1张

概述我正在使用android数据绑定库.如果我想让视图可见,我可以写这样的东西:<TextViewandroid:id="@+id/label_status"android:layout_width="match_parent"android:layout_height="wrap_content"android:gravity=&q

我正在使用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刷新属性?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1098560.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存