我在嵌套包中有自定义视图 默认程序包: com.example.testing 我在子包中创建了一个自定义类视图,例如 com.example.testing.login.pinview 并插入如下所示的布局
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.example.testing.login.pinview
android:id="@+id/testingview"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
</layout>
重建android项目后,我收到错误消息
错误:程序包登录不存在
即使我已经在gradle中启用了数据绑定
请任何人帮我停留2天