是否可以将“测试布局数据”传递到使用数据绑定的自定义视图类中,以便Android Studio的布局编辑器可以在预览中呈现它?
示例:
<CustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:customAttribute="@{ getData() }"
tools:customAttribute="@{ 'lorem ipsum' }"
/>
其中customAttribute
已定义,并将数据绑定到此自定义视图。我已经尝试过tools:customAttribute
,但目前尚未在布局编辑器中实现。