无法理解......如果变量字段不为空,如何设置视图的某些属性?
例如
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable
name="item"
type="com.test.app.Item" />
</data>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_margin="16dp"
android:src="@{item.getDrawable()}"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginEnd="16dp"
android:layout_marginLeft="72dp"
android:layout_marginRight="16dp"
android:layout_marginStart="72dp"
android:layout_toLeftOf="@id/action"
android:layout_toStartOf="@id/action"
android:orientation="vertical">
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:textColor="@color/black_87"
android:textSize="16sp"
android:text="@{item.getTitle()}"/>
<TextView
android:id="@+id/text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:autoLink="web|email"
android:linksClickable="false"
android:singleLine="true"
android:textColor="@color/black_54"
android:textSize="14sp"
android:text="@{item.getSubtitle()}"/>
</LinearLayout>
</RelativeLayout>
</layout>
Item的某些字段可以为null,我不会不必要地调用布局视图的方法。我不会得到NullPointerException
。如果属性不为null,我该怎么设置属性?
附:对不起英文。
答案 0 :(得分:60)
井数据绑定通常通过检查它来避免NullPointerException,并分配默认值(例如null),即使示例中item
本身为空。
但是null检查项目属性的基本示例:
android:text='@{item.title != null ? user.title : ""}'
或使用“Null Coalescing Operator”。空合并运算符(??
)如果不为null则选择左操作数,如果为空则选择右操作数。
android:text='@{item.title ?? ""}'
请注意,title
或getTitle
并不重要。
答案 1 :(得分:2)
数据绑定不需要检查空值,它将被处理 通过绑定类。
如果您需要将null用作其他目的(例如设置默认值),则可以这样使用。
android:text='@{item.gender != null ? item.gender : @string/male}'
或
android:text='@{item.gender ?? @string/male}'
以上两个示例相同。当@string/male
为item.gender
时,此处null
是默认值。
答案 2 :(得分:1)
我尝试过这样的事情。
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<import type="android.text.TextUtils"/>
<variable
name="mOrder"
type="com.test.app.models.Order" />
</data>
<TextView
android:id="@+id/mLblSource"
android:layout_width="100dp"
android:layout_height="40dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:text='@{TextUtils.isEmpty(mOrder.order_id) ? "- -" : mOrder.order_id}'
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent" />
</layout>