Stack Overflow上有很多资源$ NotFoundException问题,我已经对它们进行了审核,并尝试了各种建议无济于事。
我有一个完美的工作布局来显示一些图形,下面有一些按钮,我修改了一些按钮并开始出现此错误。我无法看到我的更改有任何问题,但为了缩小范围,我删除了所有按钮,所以现在我只有一个带有ImageView的LinearLayout而且我仍然得到错误。我的Java:
try {
setContentView(R.layout.graphics);
}
catch (Exception e) {
Log.d("DGraphActivity", "setContentView crash");
}
我的XML:
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageView
android:id="@+id/image2"
android:layout_width="0px"
android:layout_weight="2"
android:layout_height="match_parent"
android:scaleType="fitCenter">
</ImageView>
</LinearLayout>
错误说 android.content.res.Resources $ NotFoundException:资源ID#0x7f030005 。 在R.java文件中,资源用图形标识。 。 。
public static final class layout {
public static final int addcomment=0x7f030000;
public static final int areyousure=0x7f030001;
public static final int downarrow=0x7f030002;
public static final int downleftarrow=0x7f030003;
public static final int downrightarrow=0x7f030004;
public static final int graphics=0x7f030005;
public static final int infofromoperator=0x7f030006;
我删除了gen文件夹,做了一个干净的项目但没有任何改进。我还重新启动了我的电脑并明确关闭了该项目。 graphics.xml文件没有明显错误 - 它与我所有其他XML文件存在于同一文件夹中;它没有写保护或隐藏。 Eclipse没有标记任何错误或警告。
提前致谢。
答案 0 :(得分:10)
我在Android开发者Google小组上得到了答案,我也发布了这个问题。这位富有洞察力的程序员是“Bob Smith”,只是为了给予应有的信用额度。
我的错误是它正在寻找的资源不在正确的res文件夹中。我的应用在平板电脑上以横向模式运行。在清单中,一切都被限制为以这种方式运行(实际上在代码中,它被限制为在公司随产品提供的一个特定平板电脑上运行)。所有资源和布局文件都存在于layout-land中。鲍勃不知道这些,但他问了一个关键问题:我的资源文件真的在正确的res文件夹中吗?
答案 1 :(得分:-3)
你可以这样做:项目&gt;清洁和刷新