Eclipse新项目错误

时间:2014-11-13 20:17:49

标签: android eclipse path project android-appcompat

设置工作区和项目时,一切都很顺利,但我可以作为应用程序运行,因为有些错误我无法清除。我尝试构建java路径并下载sdk工具和库。

然后发生这些错误......我确实尝试连接到appcompat v7 jar,但它没有用。我是Eclipse的初学者,如果有人能提供一些详细的答案和解决方案,那将是很好的。 错误具体是:

  error: Error retrieving parent for item: No resource found that matches the given 
  name 'android:Widget.Material.ActionButton'.  styles_base.xml /appcompat_v7/res/values-v21

  The container 'Android Dependencies' references non existing library 'C:\Users\Documents\Android Experiments\appcompat_v7\bin\appcompat_v7.jar'

在解决构建路径错误之前无法构建项目

2 个答案:

答案 0 :(得分:0)

您可能希望在oDesk上搜索类似的帖子,即:Hello World Android App, Error: workspace\appcompat_v7\res\values-v21\styles_base.xml No resource found that matches the given name

AFAIK第一个问题发生在安装Android-L SDK时,它与Eclipse的新项目向导发生冲突(向导添加了那些有错误的资源文件,你可以在res文件夹中删除它们)

关于第二个问题 - 可能您需要修复appcompat_v7.jar文件的路径,请参阅项目设置中的帖子。它也可以解决第一个问题,我不确定

答案 1 :(得分:0)

现在是时候切换到android工作室了,即使它是beta版本的构建版本.8应该足以作为它接近发布的重要证据。使用appcompat的gradle构建是无缝自动的,它比eclipse更容易使用外部库。

这就是使用android studio的build.gradle所需要的全部内容。

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21+'
compile "com.android.support:support-v4:21+"

}