这是我在这里的第一篇文章,但我已经在论坛上关注了几个月的问题和解决方案了。有一些问题,并且非常感谢某人的两分钱。
我已经对这个话题进行了大量的研究,但是如果有人发现了我没见过的副本,我会道歉。
所以有一点背景:我在桌面上开启/关闭了几个月的项目。我的工作允许我带上我的笔记本电脑,并在我的空闲时间工作。所以,我在我的笔记本电脑上安装了Eclipse,这样我就可以在工作中和家中使用应用程序了。当我将文件系统从桌面导出到笔记本电脑时,弹出大约44个错误。经过繁琐的故障排除并遵循其他解决方案后,我将其缩小到只有4.这里是:
Error generating final archive: java.io.FileNotFoundException: G:\App5-24-14\Eclipse Workspace\Noteworthy\bin\resources.ap_ does not exist Noteworthy Unknown Android Packaging Problem
Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.AppCompat.Light'. styles.xml /Noteworthy/res/values line 8 Android AAPT Problem
Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.AppCompat.Light'. styles.xml /Noteworthy/res/values-v11 line 7 Android AAPT Problem
Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.AppCompat'. styles.xml /Noteworthy/res/values-v14 line 8 Android AAPT Problem
我目前正在使用我的外置硬盘驱动器(G :)运行应用程序文件系统。当然,我也尝试过多个地方的硬盘驱动器。
哦,还有我的R.java去了M.I.A,所以我删除了gen文件夹,在项目上运行了一个干净,但我的R.java没有重新生成。所以,我不得不在我的文件系统中手动找到它,然后我就进入了gen文件夹。又一次干净后,R.java又消失了。
我99.9%的积极因素我完全更新了。我重新安装了最新版本的Eclipse。我在minSdkVersion 13和targetSdkVersion 20.我添加了appcompat库。我的.xml文件都没有大写字母。
这是我的一个styles.xml:其他两个看起来完全相同。错误位于标记上。如果您需要我发布或其他任何内容,请告诉我,我会更新。
<resources>
<!--
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
-->
<style name="AppBaseTheme" parent="@android:style/Theme.AppCompat">
<!-- API 14 theme customizations can go here. -->
</style>
</resources>
提前谢谢你们。我在我的智慧结束,即将拔掉我的头发。我想我终于知道奶奶在通过电话需要电脑帮助时的感受了,哈哈哈。
~DeltaWolf