Can't Repro
Status Update
Comments
di...@gmail.com <di...@gmail.com> #2
I met the same issue. I removed all the files under directory bin with "rm bin/*",
and run "ant reinstall" again. Then it worked.
By the way, my android version is 1.5_r2, and OS is Kubuntu 9.04.
and run "ant reinstall" again. Then it worked.
By the way, my android version is 1.5_r2, and OS is Kubuntu 9.04.
ha...@gmail.com <ha...@gmail.com> #3
Adding a png file to res/drawable created same problem to me in my program (i.e it
suddenly stopped working).
Following along the lines of the comment given by Diego003 it helped fixed the
problem. However I tried rm -rf bin/* and not rm bin/*.
Not sure if just doing rm bin/* would have helped. I didn't give it a shot because
bin just contains the final apk file while the dependent binary files are in its
subfolders.
suddenly stopped working).
Following along the lines of the comment given by Diego003 it helped fixed the
problem. However I tried rm -rf bin/* and not rm bin/*.
Not sure if just doing rm bin/* would have helped. I didn't give it a shot because
bin just contains the final apk file while the dependent binary files are in its
subfolders.
ra...@gtempaccount.com <ra...@gtempaccount.com> #4
[Posting on behalf of hackbod]
Are you the problem isn't just that the app code didn't get rebuilt after changing
the resources? It looks like the app is trying to use the new drawable as a layout
resource:
E/AndroidRuntime( 9340): Caused by: android.content.res.Resources$NotFoundException:
File res/drawable/androidmarker.png from xml type layout resource ID #0x7f020000
E/AndroidRuntime( 9340): at
android.content.res.Resources.loadXmlResourceParser(Resources.java:1907)
E/AndroidRuntime( 9340): at
android.content.res.Resources.loadXmlResourceParser(Resources.java:1862)
E/AndroidRuntime( 9340): at
android.content.res.Resources.getLayout(Resources.java:736)
E/AndroidRuntime( 9340): at
android.view.LayoutInflater.inflate(LayoutInflater.java:318)
E/AndroidRuntime( 9340): at
android.view.LayoutInflater.inflate(LayoutInflater.java:276)
E/AndroidRuntime( 9340): at
com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:313)
E/AndroidRuntime( 9340): at
android.app.Activity.setContentView(Activity.java:1645)
E/AndroidRuntime( 9340): at
net.haltcondition.ex.Hello.Hello.onCreate(Hello.java:13)
Here are the resources:
Package Group 0 id=127 packageCount=1 name=net.haltcondition.ex.Hello
Package 0 id=127 name=net.haltcondition.ex.Hello typeCount=4
type 0 configCount=0 entryCount=0
type 1 configCount=1 entryCount=1
spec resource 0x7f020000 net.haltcondition.ex.Hello:drawable/androidmarker:
flags=0x00000000
config 0 lang=-- cnt=-- orien=0 touch=0 density=0 key=0 infl=0 nav=0 w=0 h=0
resource 0x7f020000 net.haltcondition.ex.Hello:drawable/androidmarker: t=0x03
d=0x00000000 (s=0x0008 r=0x00)
(string) "res/drawable/androidmarker.png"
type 2 configCount=1 entryCount=1
spec resource 0x7f030000 net.haltcondition.ex.Hello:layout/main: flags=0x00000000
config 0 lang=-- cnt=-- orien=0 touch=0 density=0 key=0 infl=0 nav=0 w=0 h=0
resource 0x7f030000 net.haltcondition.ex.Hello:layout/main: t=0x03
d=0x00000001 (s=0x0008 r=0x00)
(string) "res/layout/main.xml"
type 3 configCount=1 entryCount=1
spec resource 0x7f040000 net.haltcondition.ex.Hello:string/app_name:
flags=0x00000000
config 0 lang=-- cnt=-- orien=0 touch=0 density=0 key=0 infl=0 nav=0 w=0 h=0
resource 0x7f040000 net.haltcondition.ex.Hello:string/app_name: t=0x03
d=0x00000002 (s=0x0008 r=0x00)
(string) "Hello"
So this was the first drawable resource added to the app, and drawables are scanned
first so it got assigned the resource ID that the layout resource previously had.
Are you the problem isn't just that the app code didn't get rebuilt after changing
the resources? It looks like the app is trying to use the new drawable as a layout
resource:
E/AndroidRuntime( 9340): Caused by: android.content.res.Resources$NotFoundException:
File res/drawable/androidmarker.png from xml type layout resource ID #0x7f020000
E/AndroidRuntime( 9340): at
android.content.res.Resources.loadXmlResourceParser(Resources.java:1907)
E/AndroidRuntime( 9340): at
android.content.res.Resources.loadXmlResourceParser(Resources.java:1862)
E/AndroidRuntime( 9340): at
android.content.res.Resources.getLayout(Resources.java:736)
E/AndroidRuntime( 9340): at
android.view.LayoutInflater.inflate(LayoutInflater.java:318)
E/AndroidRuntime( 9340): at
android.view.LayoutInflater.inflate(LayoutInflater.java:276)
E/AndroidRuntime( 9340): at
com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:313)
E/AndroidRuntime( 9340): at
android.app.Activity.setContentView(Activity.java:1645)
E/AndroidRuntime( 9340): at
net.haltcondition.ex.Hello.Hello.onCreate(Hello.java:13)
Here are the resources:
Package Group 0 id=127 packageCount=1 name=net.haltcondition.ex.Hello
Package 0 id=127 name=net.haltcondition.ex.Hello typeCount=4
type 0 configCount=0 entryCount=0
type 1 configCount=1 entryCount=1
spec resource 0x7f020000 net.haltcondition.ex.Hello:drawable/androidmarker:
flags=0x00000000
config 0 lang=-- cnt=-- orien=0 touch=0 density=0 key=0 infl=0 nav=0 w=0 h=0
resource 0x7f020000 net.haltcondition.ex.Hello:drawable/androidmarker: t=0x03
d=0x00000000 (s=0x0008 r=0x00)
(string) "res/drawable/androidmarker.png"
type 2 configCount=1 entryCount=1
spec resource 0x7f030000 net.haltcondition.ex.Hello:layout/main: flags=0x00000000
config 0 lang=-- cnt=-- orien=0 touch=0 density=0 key=0 infl=0 nav=0 w=0 h=0
resource 0x7f030000 net.haltcondition.ex.Hello:layout/main: t=0x03
d=0x00000001 (s=0x0008 r=0x00)
(string) "res/layout/main.xml"
type 3 configCount=1 entryCount=1
spec resource 0x7f040000 net.haltcondition.ex.Hello:string/app_name:
flags=0x00000000
config 0 lang=-- cnt=-- orien=0 touch=0 density=0 key=0 infl=0 nav=0 w=0 h=0
resource 0x7f040000 net.haltcondition.ex.Hello:string/app_name: t=0x03
d=0x00000002 (s=0x0008 r=0x00)
(string) "Hello"
So this was the first drawable resource added to the app, and drawables are scanned
first so it got assigned the resource ID that the layout resource previously had.
je...@cs.caltech.edu <je...@cs.caltech.edu> #5
I'm seeing this same problem:
E/AndroidRuntime( 1046): java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.example.hellomapview/com.example.hellomapview.HelloMapActivity}:
android.content.res.Resources$NotFoundException: File res/drawable/red.png from xml
type layout resource ID #0x7f020000
I have a portion of code that tries to access my PNG files within res/drawable:
code:
icon = getResources().getDrawable(R.drawable.red);
directory:
$> ls res/drawable/
blue.png red.png
Commenting out the line isn't good enough - I have to remove the drawable directory
completely for things to work.
E/AndroidRuntime( 1046): java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.example.hellomapview/com.example.hellomapview.HelloMapActivity}:
android.content.res.Resources$NotFoundException: File res/drawable/red.png from xml
type layout resource ID #0x7f020000
I have a portion of code that tries to access my PNG files within res/drawable:
code:
icon = getResources().getDrawable(R.drawable.red);
directory:
$> ls res/drawable/
blue.png red.png
Commenting out the line isn't good enough - I have to remove the drawable directory
completely for things to work.
ab...@gmail.com <ab...@gmail.com> #6
I added a png image to be used as an icon for the application. When debugged and
installed, the icon appeared fine on the device, but the application wouldn't start
and it raised a "resource not found" exception for the image. Deleting the contents
of the gen/ and bin/ directories does solve the problem.
I've also experienced this problem when I changed the xml layout files a few times
during development. The application sometimes raises runtime exceptions about missing
widgets or wrong IDs that are neither missing nor wrong. And again, deleting the
contents or gen/ and bin/ solves the problem.
This really needs to be fixed since it drove me crazy to see that my application
wasn't working and my code was perfectly fine. It took me a while to find this page
and figure out what I should do to fix it.
I'm using SDK 1.6 r1 and Ubuntu 8.04.
installed, the icon appeared fine on the device, but the application wouldn't start
and it raised a "resource not found" exception for the image. Deleting the contents
of the gen/ and bin/ directories does solve the problem.
I've also experienced this problem when I changed the xml layout files a few times
during development. The application sometimes raises runtime exceptions about missing
widgets or wrong IDs that are neither missing nor wrong. And again, deleting the
contents or gen/ and bin/ solves the problem.
This really needs to be fixed since it drove me crazy to see that my application
wasn't working and my code was perfectly fine. It took me a while to find this page
and figure out what I should do to fix it.
I'm using SDK 1.6 r1 and Ubuntu 8.04.
je...@cs.caltech.edu <je...@cs.caltech.edu> #7
I was able to solve this problem. The activity name in my manifest was not consistent
with my class hierarchy. Specifically, I had the following in AndroidManifest.xml
<activity android:name=".HelloMapActivity" android:label="@string/app_name">
However, there was no HelloMapActivity in my src/ directory (there was a class that
refined Activity, but it was not called HelloMapActivity). Thus, Android was looking
in the wrong place for my res/drawables. I imagine this is something Eclipse would
take care of, but I'm not using Eclipse.
with my class hierarchy. Specifically, I had the following in AndroidManifest.xml
<activity android:name=".HelloMapActivity" android:label="@string/app_name">
However, there was no HelloMapActivity in my src/ directory (there was a class that
refined Activity, but it was not called HelloMapActivity). Thus, Android was looking
in the wrong place for my res/drawables. I imagine this is something Eclipse would
take care of, but I'm not using Eclipse.
my...@gmail.com <my...@gmail.com> #8
I met the same problem too, I can't get drawable, it gave me some error message just like below:
D/AndroidRuntime( 864): Shutting down VM
W/dalvikvm( 864): threadid=3: thread exiting with uncaught exception (group=0x4000fe70)
E/AndroidRuntime( 864): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime( 864): java.lang.RuntimeException: Unable to start activity ComponentInfo{net.visionten.goaruna/net.visionten.goaruna.HomeScreenDialog}: android.view.InflateException: Binary XML file line #8: Error inflating class java.lang.reflect.Constructor
E/AndroidRuntime( 864): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2268)
E/AndroidRuntime( 864): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2284)
E/AndroidRuntime( 864): at android.app.ActivityThread.access$1800(ActivityThread.java:112)
E/AndroidRuntime( 864): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)
E/AndroidRuntime( 864): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 864): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 864): at android.app.ActivityThread.main(ActivityThread.java:3948)
E/AndroidRuntime( 864): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 864): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 864): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)
E/AndroidRuntime( 864): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)
E/AndroidRuntime( 864): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 864): Caused by: android.view.InflateException: Binary XML file line #8: Error inflating class java.lang.reflect.Constructor
E/AndroidRuntime( 864): at android.view.LayoutInflater.createView(LayoutInflater.java:512)
E/AndroidRuntime( 864): at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56)
E/AndroidRuntime( 864): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:562)
E/AndroidRuntime( 864): at android.view.LayoutInflater.rInflate(LayoutInflater.java:617)
E/AndroidRuntime( 864): at android.view.LayoutInflater.inflate(LayoutInflater.java:407)
E/AndroidRuntime( 864): at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
E/AndroidRuntime( 864): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
E/AndroidRuntime( 864): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:309)
E/AndroidRuntime( 864): at android.app.Activity.setContentView(Activity.java:1626)
E/AndroidRuntime( 864): at net.visionten.goaruna.HomeScreenDialog.onCreate(HomeScreenDialog.java:33)
E/AndroidRuntime( 864): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
E/AndroidRuntime( 864): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2231)
E/AndroidRuntime( 864): ... 11 more
E/AndroidRuntime( 864): Caused by: java.lang.reflect.InvocationTargetException
E/AndroidRuntime( 864): at android.widget.LinearLayout.<init>(LinearLayout.java:92)
E/AndroidRuntime( 864): at java.lang.reflect.Constructor.constructNative(Native Method)
E/AndroidRuntime( 864): at java.lang.reflect.Constructor.newInstance(Constructor.java:446)
E/AndroidRuntime( 864): at android.view.LayoutInflater.createView(LayoutInflater.java:499)
E/AndroidRuntime( 864): ... 22 more
E/AndroidRuntime( 864): Caused by: android.content.res.Resources$NotFoundException: File res/drawable/home_screen_bg.jpg from drawable resource ID #0x7f020057
E/AndroidRuntime( 864): at android.content.res.Resources.loadDrawable(Resources.java:1641)
E/AndroidRuntime( 864): at android.content.res.TypedArray.getDrawable(TypedArray.java:548)
E/AndroidRuntime( 864): at android.view.View.<init>(View.java:1725)
E/AndroidRuntime( 864): at android.view.View.<init>(View.java:1674)
E/AndroidRuntime( 864): at android.view.ViewGroup.<init>(ViewGroup.java:271)
E/AndroidRuntime( 864): ... 26 more
E/AndroidRuntime( 864): Caused by: java.io.FileNotFoundException: res/drawable/home_screen_bg.jpg
E/AndroidRuntime( 864): at android.content.res.AssetManager.openNonAssetNative(Native Method)
E/AndroidRuntime( 864): at android.content.res.AssetManager.openNonAsset(AssetManager.java:392)
E/AndroidRuntime( 864): at android.content.res.Resources.loadDrawable(Resources.java:1634)
E/AndroidRuntime( 864): ... 30 more
I am 1000% percent sure I have copied home_screen_bg.jpg to drawable folder.
by the way, this problem only happend in version that is less than 1.6
I don't know why? But I wanna know why?
any help?
D/AndroidRuntime( 864): Shutting down VM
W/dalvikvm( 864): threadid=3: thread exiting with uncaught exception (group=0x4000fe70)
E/AndroidRuntime( 864): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime( 864): java.lang.RuntimeException: Unable to start activity ComponentInfo{net.visionten.goaruna/net.visionten.goaruna.HomeScreenDialog}: android.view.InflateException: Binary XML file line #8: Error inflating class java.lang.reflect.Constructor
E/AndroidRuntime( 864): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2268)
E/AndroidRuntime( 864): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2284)
E/AndroidRuntime( 864): at android.app.ActivityThread.access$1800(ActivityThread.java:112)
E/AndroidRuntime( 864): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)
E/AndroidRuntime( 864): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 864): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 864): at android.app.ActivityThread.main(ActivityThread.java:3948)
E/AndroidRuntime( 864): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 864): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 864): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)
E/AndroidRuntime( 864): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)
E/AndroidRuntime( 864): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 864): Caused by: android.view.InflateException: Binary XML file line #8: Error inflating class java.lang.reflect.Constructor
E/AndroidRuntime( 864): at android.view.LayoutInflater.createView(LayoutInflater.java:512)
E/AndroidRuntime( 864): at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56)
E/AndroidRuntime( 864): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:562)
E/AndroidRuntime( 864): at android.view.LayoutInflater.rInflate(LayoutInflater.java:617)
E/AndroidRuntime( 864): at android.view.LayoutInflater.inflate(LayoutInflater.java:407)
E/AndroidRuntime( 864): at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
E/AndroidRuntime( 864): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
E/AndroidRuntime( 864): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:309)
E/AndroidRuntime( 864): at android.app.Activity.setContentView(Activity.java:1626)
E/AndroidRuntime( 864): at net.visionten.goaruna.HomeScreenDialog.onCreate(HomeScreenDialog.java:33)
E/AndroidRuntime( 864): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
E/AndroidRuntime( 864): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2231)
E/AndroidRuntime( 864): ... 11 more
E/AndroidRuntime( 864): Caused by: java.lang.reflect.InvocationTargetException
E/AndroidRuntime( 864): at android.widget.LinearLayout.<init>(LinearLayout.java:92)
E/AndroidRuntime( 864): at java.lang.reflect.Constructor.constructNative(Native Method)
E/AndroidRuntime( 864): at java.lang.reflect.Constructor.newInstance(Constructor.java:446)
E/AndroidRuntime( 864): at android.view.LayoutInflater.createView(LayoutInflater.java:499)
E/AndroidRuntime( 864): ... 22 more
E/AndroidRuntime( 864): Caused by: android.content.res.Resources$NotFoundException: File res/drawable/home_screen_bg.jpg from drawable resource ID #0x7f020057
E/AndroidRuntime( 864): at android.content.res.Resources.loadDrawable(Resources.java:1641)
E/AndroidRuntime( 864): at android.content.res.TypedArray.getDrawable(TypedArray.java:548)
E/AndroidRuntime( 864): at android.view.View.<init>(View.java:1725)
E/AndroidRuntime( 864): at android.view.View.<init>(View.java:1674)
E/AndroidRuntime( 864): at android.view.ViewGroup.<init>(ViewGroup.java:271)
E/AndroidRuntime( 864): ... 26 more
E/AndroidRuntime( 864): Caused by: java.io.FileNotFoundException: res/drawable/home_screen_bg.jpg
E/AndroidRuntime( 864): at android.content.res.AssetManager.openNonAssetNative(Native Method)
E/AndroidRuntime( 864): at android.content.res.AssetManager.openNonAsset(AssetManager.java:392)
E/AndroidRuntime( 864): at android.content.res.Resources.loadDrawable(Resources.java:1634)
E/AndroidRuntime( 864): ... 30 more
I am 1000% percent sure I have copied home_screen_bg.jpg to drawable folder.
by the way, this problem only happend in version that is less than 1.6
I don't know why? But I wanna know why?
any help?
ob...@gmail.com <ob...@gmail.com> #9
I recently started developing, and stumbled upon the same problem.
However, I think it's related to the following output from "ant":
{
compile:
[javac] F:\android-sdk-windows\platforms\android-4\ant\ant_rules_r2.xml:255: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
[javac] Compiling 1 source file to E:\dev\android\YoAndroid\bin\classes
}
However, I think it's related to the following output from "ant":
{
compile:
[javac] F:\android-sdk-windows\platforms\android-4\ant\ant_rules_r2.xml:255: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
[javac] Compiling 1 source file to E:\dev\android\YoAndroid\bin\classes
}
su...@gmail.com <su...@gmail.com> #10
To solve "android.content.res.Resources$NotFoundException: Resource ID ..." Exception you may want to create a folder called "drawable" under res folder and copy the png/image files. Do a clean and build again. This worked for me.
I see this problem only when I try to rut it on 1.5 platform.
I see this problem only when I try to rut it on 1.5 platform.
sb...@google.com <sb...@google.com> #11
Closing this bug as obsolete. I suspect the real solution is to do a clean build, as hackbod suggested.
ma...@gmail.com <ma...@gmail.com> #12
I just recently hit this mine again on an Android 5.1
ma...@gmail.com <ma...@gmail.com> #13
I meet same error
Android 4.4.2,level 19 ROM XiaoMi/MIU
1 android.content.res.Resources$NotFoundException:File res/mipmap-xhdpi-v4/ic_22_hide.png from xml type layout resource ID #0x7f030001
2 android.content.res.Resources.loadXmlResourceParser(Resources.java:2433)
3 ......
4 java.io.FileNotFoundException:Corrupt XML binary file
5 android.content.res.AssetManager.openXmlAssetNative(Native Method)
6 android.content.res.AssetManager.openXmlBlockAsset(AssetManager.java:506)
7 android.content.res.Resources.loadXmlResourceParser(Resources.java:2415)
8 android.content.res.Resources.loadXmlResourceParser(Resources.java:2388)
9 android.content.res.Resources.getLayout(Resources.java:952)
10 android.content.res.XResources.getLayout(XResources.java:593)
11 android.view.LayoutInflater.inflate(LayoutInflater.java:398)
12 android.view.LayoutInflater.inflate(LayoutInflater.java:353)
13 com.alibaba.mtl.mdp.kguard.xposed.performance.leak.leakcanary.AndroidHeapDumper$2.run(AndroidHeapDumper.java:116)
14 android.os.Handler.handleCallback(Handler.java:808)
15 android.os.Handler.dispatchMessage(Handler.java:103)
16 android.os.Looper.loop(Looper.java:193)
17 android.app.ActivityThread.main(ActivityThread.java:5315)
18 java.lang.reflect.Method.invokeNative(Native Method)
19 java.lang.reflect.Method.invoke(Method.java:515)
20 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:844)
21 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:660)
22 de.robv.android.xposed.XposedBridge.main(XposedBridge.java:136)
23 dalvik.system.NativeStart.main(Native Method)
Android 4.4.2,level 19 ROM XiaoMi/MIU
1 android.content.res.Resources$NotFoundException:File res/mipmap-xhdpi-v4/ic_22_hide.png from xml type layout resource ID #0x7f030001
2 android.content.res.Resources.loadXmlResourceParser(Resources.java:2433)
3 ......
4 java.io.FileNotFoundException:Corrupt XML binary file
5 android.content.res.AssetManager.openXmlAssetNative(Native Method)
6 android.content.res.AssetManager.openXmlBlockAsset(AssetManager.java:506)
7 android.content.res.Resources.loadXmlResourceParser(Resources.java:2415)
8 android.content.res.Resources.loadXmlResourceParser(Resources.java:2388)
9 android.content.res.Resources.getLayout(Resources.java:952)
10 android.content.res.XResources.getLayout(XResources.java:593)
11 android.view.LayoutInflater.inflate(LayoutInflater.java:398)
12 android.view.LayoutInflater.inflate(LayoutInflater.java:353)
13 com.alibaba.mtl.mdp.kguard.xposed.performance.leak.leakcanary.AndroidHeapDumper$2.run(AndroidHeapDumper.java:116)
14 android.os.Handler.handleCallback(Handler.java:808)
15 android.os.Handler.dispatchMessage(Handler.java:103)
16 android.os.Looper.loop(Looper.java:193)
17 android.app.ActivityThread.main(ActivityThread.java:5315)
18 java.lang.reflect.Method.invokeNative(Native Method)
19 java.lang.reflect.Method.invoke(Method.java:515)
20 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:844)
21 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:660)
22 de.robv.android.xposed.XposedBridge.main(XposedBridge.java:136)
23 dalvik.system.NativeStart.main(Native Method)
Description
directory in an otherwise working app:
I/ActivityManager( 565): Start proc net.haltcondition.android.ex for
activity net.haltcondition.android.ex/.ThreadedXmlList: pid=1237
uid=10018 gids={3003}
W/ResourceType( 1237): Bad XML block: header size 18254 or total size
169478669 is larger than data size 635
D/AndroidRuntime( 1237): Shutting down VM
W/dalvikvm( 1237): threadid=3: thread exiting with uncaught exception
(group=0x4000fe70)
E/AndroidRuntime( 1237): Uncaught handler: thread main exiting due to
uncaught exception
E/AndroidRuntime( 1237): java.lang.RuntimeException: Unable to start
activity ComponentInfo{net.haltcondition.android.ex/
net.haltcondition.android.ex.ThreadedXmlList}:
android.content.res.Resources$NotFoundException: File res/drawable/
androidmarker.png from xml type layout resource ID #0x7f020000
E/AndroidRuntime( 1237): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:
2268)
E/AndroidRuntime( 1237): at
android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:
2284)
E/AndroidRuntime( 1237): at android.app.ActivityThread.access$1800
(ActivityThread.java:112)
E/AndroidRuntime( 1237): at android.app.ActivityThread$H.handleMessage
(ActivityThread.java:1692)
E/AndroidRuntime( 1237): at android.os.Handler.dispatchMessage
(Handler.java:99)
E/AndroidRuntime( 1237): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 1237): at android.app.ActivityThread.main
(ActivityThread.java:3948)
E/AndroidRuntime( 1237): at java.lang.reflect.Method.invokeNative
(Native Method)
E/AndroidRuntime( 1237): at java.lang.reflect.Method.invoke
(Method.java:521)
E/AndroidRuntime( 1237): at com.android.internal.os.ZygoteInit
$MethodAndArgsCaller.run(ZygoteInit.java:782)
E/AndroidRuntime( 1237): at com.android.internal.os.ZygoteInit.main
(ZygoteInit.java:540)
E/AndroidRuntime( 1237): at dalvik.system.NativeStart.main(Native
Method)
E/AndroidRuntime( 1237): Caused by: android.content.res.Resources
$NotFoundException: File res/drawable/androidmarker.png from xml type
layout resource ID #0x7f020000
E/AndroidRuntime( 1237): at
android.content.res.Resources.loadXmlResourceParser(Resources.java:
1843)
E/AndroidRuntime( 1237): at
android.content.res.Resources.loadXmlResourceParser(Resources.java:
1798)
E/AndroidRuntime( 1237): at android.content.res.Resources.getLayout
(Resources.java:685)
E/AndroidRuntime( 1237): at android.view.LayoutInflater.inflate
(LayoutInflater.java:318)
E/AndroidRuntime( 1237): at androidview.LayoutInflater.inflate
(LayoutInflater.java:276)
E/AndroidRuntime( 1237): at
com.android.internal.policy.impl.PhoneWindow.setContentView
(PhoneWindow.java:309)
E/AndroidRuntime( 1237): at android.app.Activity.setContentView
(Activity.java:1626)
E/AndroidRuntime( 1237): at
net.haltcondition.android.ex.ThreadedXmlList.onCreate
(ThreadedXmlList.java:34)
E/AndroidRuntime( 1237): at
android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:
1123)
E/AndroidRuntime( 1237): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:
2231)
E/AndroidRuntime( 1237): ... 11 more
E/AndroidRuntime( 1237): Caused by: java.io.FileNotFoundException:
Corrupt XML binary file
E/AndroidRuntime( 1237): at
android.content.res.AssetManager.openXmlAssetNative(Native Method)
E/AndroidRuntime( 1237): at
android.content.res.AssetManager.openXmlBlockAsset(AssetManager.java:
471)
E/AndroidRuntime( 1237): at
android.content.res.Resources.loadXmlResourceParser(Resources.java:
1825)
E/AndroidRuntime( 1237): ... 20 more
No other changes have been made to the app; removing the file makes
the problem go away. This is on 1.5_r1.
To reproduce:
* android create project -k net.haltcondition.ex.Hello -a Hello -t 2 -p hello
* ant install
* <App runs OK>
* mkdir res/drawable
* cp /tmp/androidmarker.png res/drawable
* ant reinstall
* <App fails with exceptions in log>
I've attached the resulting project.
Cheers,
Steve