作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
假设我有这个对象:
public class Field
{
List<String> list;
public Field()
{
list = new ArrayList();
}
public boolean isOnTheList(String someText)
{
return list.contains(someText);
}
}
现在我想在具有这样绑定(bind)的 xml 上使用此函数。
<?xml version="1.0" encoding="utf-8"?>
<layout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<import type="android.view.View"/>
<variable
name="field"
type="com.greendao.db.Field"/>
<variable
name="user"
type="com.package.User"/>
</data>
<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:visibility="@{field.isOnTheList(user.name)?View.VISIBLE:View.GONE}"
tools:context=".advisor.new_visit_report.activities.FieldsSelectionActivity"> ...
问题是它不起作用。任何人已经尝试过这个?
最佳答案
如果其他一切都设置正确,我建议编辑您的方法以直接返回 View.VISIBLE
或 View.GONE
:
public int isOnTheList(String someText) {
return list.contains(someText) ? View.VISIBLE : View.GONE;
}
在xml中使用:
android:visibility="@{field.isOnTheList(user.name)}
关于android - 如何在Android数据绑定(bind)中使用对象的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39107872/
我是一名优秀的程序员,十分优秀!