我正在使用一个包含自定义视图类的外部库(jar)。我必须使用它测试项目。一个正在工作,一个没有。
非工作的在 Eclipse 中引用自定义视图的行有以下错误:
error: No resource identifier found for attribute 'bar' in package 'com.example.testapp'
作为参考,布局如下所示(简化):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:foolib="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.example.customviewlib.MyBarImageView
android:id="@+id/imageView1"
android:layout_width="100dp"
android:layout_height="100dp"
foolib:bar="test.bar" />
</LinearLayout>
这两个项目之间的唯一区别似乎是工作项目在“gen”下有一个名为“com.example.customviewlib”的包(带有 R.java)。IE。匹配库包名。
我是否正确地假设这是自定义视图在我的第二个项目中不起作用的原因是缺少库的 gen 包?
如果是这样,我如何强制在我的其他项目中生成包?
我尝试了各种建议,例如清理项目和重新启动 Eclipse。