转到android-x后,我注意到有很多日志说:
"E/itterforandroi: Invalid ID 0x00000000."
我设法绕到要创建新的RecyclerView ViewHolder并膨胀包含Chip的布局的地步。其他所有字段均不显示此类错误,仅显示Chip。
在xml中看起来像这样:
<com.google.android.material.chip.Chip
android:id="@+id/someChip"
style="@style/Widget.MaterialComponents.Chip.Action"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left|center"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"
app:chipIcon="@drawable/ic_account_circle_black_24dp"
app:chipIconEnabled="true" />
我找不到导致错误的此定义中真正缺少的内容。有什么提示吗?
答案 0 :(得分:1)
我在芯片膨胀方面也遇到了同样的问题,我通过切换到芯片的数据绑定布局来解决此错误,如下所示。
我还认为您应该删除xml中的“ android:id”属性,因为您正在使用RecyclerView动态填充芯片。它会为您自动生成一个ID。
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<import type="android.content.Context" />
<variable
name="element"
type="com.android.sarahmica.app.database.Element" />
</data>
<com.google.android.material.chip.Chip
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
android:clickable="true"
android:focusable="true"
android:text="@{element.name}"
android:tag="@{element.id}"
app:chipBackgroundColor="@{element.getChipColor(context)}"
style="@style/Widget.MaterialComponents.Chip.Filter" />
</layout>
然后我像这样从片段列表中填充芯片(但由于您使用的是RecycylerView,因此必须调整适配器以相应地使用数据绑定)
val chipGroup = getChipGroup(type)
val inflater = LayoutInflater.from(chipGroup.context)
elementList.forEach { element ->
val chipBinding: MyChipBinding = DataBindingUtil.inflate(inflater, R.layout.my_chip, chipGroup, true)
chipBinding.greenActivity = activity
binding.lifecycleOwner = this
}
希望我的解决方案对您有帮助!