DataBinding在布局文件中通过标签导入静态工具类

<data>
        <variable
            name="book"
            type="com.example.jetpack.Book" />
        <import type="com.example.jetpack.BookRatingUtil"/>
    </data>
 

<TextView
            android:id="@+id/tvRating"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@{BookRatingUtil.getRatingString(book.rating)}"
            android:textSize="25sp" />
 

https://blog.csdn.net/qq_43404873/article/details/109613424

猜你喜欢

转载自blog.csdn.net/whb008/article/details/114283704