Android 无法识别自定义库模块 BindingAdapter 属性
Android Custom Library Module BindingAdapter Attribute Not Recognized
所以我刚刚学会了如何通过 Github 和 JitPack 发布我自己的库(只是一些实用函数),这是我的代码:
https://github.com/xht418/Util-Kotlin/tree/main/utlikotlin/src/main/java/com/example/utlikotlin
我的问题是,Double.roundDecimal()
被识别,但我的自定义 DataBinding 属性 isAddCase
未被识别,显示 AAPT: error: attribute isAddCase (aka com.example.shapeableimageviewtest:isAddCase) not found.
我在一个新项目中尝试过:
<layout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<variable
name="name"
type="String" />
</data>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@{name}"
app:isAddCase="true"/> //either "isAddCase" or "app:isAddCase", doesn't work
</LinearLayout>
</layout>
您必须将 app:isAddCase=true
更改为 app:isAddCase="@{true}"
所以我刚刚学会了如何通过 Github 和 JitPack 发布我自己的库(只是一些实用函数),这是我的代码:
https://github.com/xht418/Util-Kotlin/tree/main/utlikotlin/src/main/java/com/example/utlikotlin
我的问题是,Double.roundDecimal()
被识别,但我的自定义 DataBinding 属性 isAddCase
未被识别,显示 AAPT: error: attribute isAddCase (aka com.example.shapeableimageviewtest:isAddCase) not found.
我在一个新项目中尝试过:
<layout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<variable
name="name"
type="String" />
</data>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@{name}"
app:isAddCase="true"/> //either "isAddCase" or "app:isAddCase", doesn't work
</LinearLayout>
</layout>
您必须将 app:isAddCase=true
更改为 app:isAddCase="@{true}"