我有这个xml文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ctc="http://schemas.android.com/apk/res/com.hulist.asm.person"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<com.hulist.asm.person.ImageMap
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/person"
ctc:map="person_map" />
</LinearLayout>
和第8行(<com.hulist.asm.person.ImageMap
)出现错误
错误:找不到包'com.hulist.asm.person'中属性'map'的资源标识符
我一直试图解决这个问题几天,我错了什么?
答案 0 :(得分:0)
可能您指的是bug 9656中已解决的相同情况。 看看它是否相同,检查您是否使用旧版本的sdk工具。
答案 1 :(得分:0)
如果您当前的包名称是com.hulist.asm
,那么这就是ctc
命名空间声明应该具有的内容而不是
xmlns:ctc="http://schemas.android.com/apk/res/com.hulist.asm.person"