Android绑定:以xml格式调用View的方法

时间:2018-08-07 07:29:04

标签: android-binding-adapter

Android Studio 3.1.2

我想在文本视图中删除文本。所以我使用这种方法:

此处xml:

<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">

    <data>

        <import type="android.view.View" />        

        <variable
            name="handler"
            type="myproject.MyHandler" />

        <variable
            name="item"
            type="myproject.Product" />

    </data>
  <TextView
                android:id="@+id/priceWithoutDiscountTextView"
                style="@style/textViewOneLine"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="@string/price"
                android:textColor="@color/color_primary"
                app:strike_price="@{item.price}" />
    </android.support.constraint.ConstraintLayout>
</layout>

Here code in recycler view adapter:

@BindingAdapter("strike_price")
    public static void setPrice(TextView view, float price) {
        view.setPaintFlags(view.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
    }

因此价格是行使价。真好这项工作很好。 但是我想调用方法

view.setPaintFlags(view.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

直接在xml中。有可能吗?

0 个答案:

没有答案