如何在 Android Studio 中为基于 android:layout_marginLeft 的 LiveData<Boolean> 绑定不同的值?

How can I binding different value for android:layout_marginLeft based LiveData<Boolean> in Android Studio?

代码 B 运行良好。

aHomeViewModel.isHaveRecordLiveData<Boolean>,我希望根据aHomeViewModel.isHaveRecord的值设置不同的marginLeft

Bur 代码 A 出现以下编译错误,我该如何解决?

找不到接受参数类型 'float'

的 setter

代码A

<TextView
     android:id="@+id/title_Date"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
    android:layout_marginLeft="@{aHomeViewModel.isHaveRecord? @dimen/margin1: @dimen/margin2 }"
  />

  <dimen name="margin1">10dp</dimen>
  <dimen name="margin2">5dp</dimen>

代码B

 <TextView
     android:id="@+id/title_Date"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginLeft="@dimen/margin1"
  />

  <dimen name="margin1">10dp</dimen>
  <dimen name="margin2">5dp</dimen>

顺便说一句,下面的代码可以正常工作。

android:padding="@{aHomeViewModel.displayCheckBox? @dimen/margin1 : @dimen/margin2 }"

要实现此功能,您必须定义自定义 @BindingAdapter:

public class BindingAdapters {
    @BindingAdapter("marginLeftRecord")
    public static void setLeftMargin(View view, boolean hasRecord) {
        LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) view.getLayoutParams();
        params.setMargins(
                hasRecord ? (int) view.getResources().getDimension(R.dimen.margin1)
                          : (int) view.getResources().getDimension(R.dimen.margin2)
                , 0, 0, 0);
        view.setLayoutParams(params);
    }
}

你需要LinearLayout.LayoutParams还是其他取决于你的TextView的父级。

要使用此功能,请将您的 xml 调整为:

<TextView
    android:id="@+id/title_Date"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    marginLeftRecord="@{aHomeViewModel.isHaveRecord}" />

已测试并正常工作 ;)