在我的主要活动布局xml中,我有一个片段标记。 我想使用@BindingAdapter在标签中创建一个自定义属性,比如app:myCustomAttribute(见下文)。这甚至可能吗?我无法在线找到解决方案。如果不可能,是否有任何简单的方法在片段中创建自定义属性。有人发布了一个解决方案here,但解决方案似乎相当麻烦,仍然需要在资源文件夹中定义一个attrs.xml。
<fragment
android:id="@+id/fragment_createTaskForm"
android:name="com.edenhan.simplytask.CreateTaskForm"
android:layout_width="wrap_content"
android:layout_height="191dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:layout="@layout/fragment_create_task_form"
app:myCustomAttribute="test"
/>