适用于 MAC 的 Android ADT r12
我在 MAC OS X 的 Eclipse 上收到有关 styles.xml 的错误消息。以下是错误消息:
错误:检索项目父级时出错:找不到与给定名称“android:WindowTitleBackground”匹配的资源。
我用 google 搜索了这个问题,发现我需要 SDK r11 更新来解决这个问题。但由于最新的 SDK 是 r12,所以我使用 Eclipse 下载。但我仍然看到这个问题。
我是 Android 新手,所以我真的不知道如何解决这个问题。我希望你们能帮助我。如果我需要提供更多信息,请告诉我。提前致谢。
I am getting an error message regarding a styles.xml on my Eclipse for MAC OS X. Below is the error message:
error: Error retrieving parent for item: No resource found that matches the given name 'android:WindowTitleBackground'.
I googled this issue and found out that I will require an SDK r11 update to solve this problem. But since the latest SDK is r12, I downloaded using my Eclipse. But I still see this problem.
I am new to Android, so I do not really know how to troubleshoot this problem. I am hoping you guys can help me. Do let me know if I need to provide more information. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个错误报告,其中解释了所有内容:http://code.google .com/p/android/issues/detail?id=18659
WindowTitleBackground 是私有资源,因此您不能继承它,而是应该复制父资源。
Here is a bug report where everything is explained: http://code.google.com/p/android/issues/detail?id=18659
WindowTitleBackground is a private resource and thus you cannot inherit from it, instead you should copy the parent resource.
试试这个:
@android:style/WindowTitleBackground
您需要指定这个
@android
的类型,因此添加样式应该可以。Try this:
@android:style/WindowTitleBackground
You need to specify which type this
@android
is, so adding style should work.