Android 搞砸了 R.java 无法找到资源 ID #0xffffffff
Posted
技术标签:
【中文标题】Android 搞砸了 R.java 无法找到资源 ID #0xffffffff【英文标题】:Android messed up R.java unable to find resource ID #0xffffffff 【发布时间】:2016-10-02 10:09:18 【问题描述】:我不小心在我的布局 xml 中将按钮的 id 设置为“mybutton-1”。当我在 android Studio 中点击“运行应用程序”时,它切换到 R.java 并在
处出现错误public static final int mybutton-1=0x7f0b00e1;
并且错误消息说在-1之后有一个;
。因此,我将布局 xml 中该按钮的 id 更改为“myButton_a”并再次点击运行应用程序。这次我的 mainActivity.java 出现错误:
ArrayList<View> focusableViews = view.getFocusables(View.FOCUS_FORWARD);
for (int i = 0; i < focusableViews.size(); i++)
View actualView = focusableViews.get(i);
String actualID = actualView.getResources().getResourceEntryName(actualView.getId()); // here
...
我查看了 R.java,它按预期更新了我的更改
public static final int myButton_a=0x7f0b00e1;
这是堆栈跟踪:
E/AndroidRuntime: FATAL EXCEPTION: main
Process: myApp.mainActivity, PID: 31364
java.lang.RuntimeException: Unable to start activity ComponentInfomyApp.mainActivity/myApp.mainActivity.mainLayout: android.content.res.Resources$NotFoundException: Unable to find resource ID #0xffffffff
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3254)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3350)
at android.app.ActivityThread.access$1100(ActivityThread.java:222)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1795)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:158)
at android.app.ActivityThread.main(ActivityThread.java:7229)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
Caused by: android.content.res.Resources$NotFoundException: Unable to find resource ID #0xffffffff
at android.content.res.Resources.getResourceEntryName(Resources.java:3738)
at android.support.v7.widget.ResourcesWrapper.getResourceEntryName(ResourcesWrapper.java:264)
at myApp.mainActivity.doStuff(mainActivity.java:341)
at myApp.mainActivity.onCreate(mainActivity.java:71)
at android.app.Activity.performCreate(Activity.java:6876)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1135)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3207)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3350)
at android.app.ActivityThread.access$1100(ActivityThread.java:222)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1795)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:158)
at android.app.ActivityThread.main(ActivityThread.java:7229)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
我该如何解决这个问题?我读到我必须手动设置 ID,但还有其他方法吗?我不想再弄乱ID了
【问题讨论】:
actualView.getId()
输出什么?
错误提示actualView.getId()
的值为0xffffffff
。所以你的 id 之一是 -1。
清理你的项目并重建它
actualView.getId() 确实是-1,因为我有一个没有 ID 的可聚焦视图。清理和重建项目是一个不错的选择,但没有奏效。我必须将 ID 添加到一些可聚焦的视图中。
【参考方案1】:
如果您的视图没有 id,那么 getId()
将返回 -1。所以它变成了 0xffffffff。
您的focusableViews
似乎不仅包含mybutton1,还包含其他一些没有id的。这就是问题所在。
【讨论】:
以上是关于Android 搞砸了 R.java 无法找到资源 ID #0xffffffff的主要内容,如果未能解决你的问题,请参考以下文章