How To Fix Problem With Resources On Android?
Getting the following in LogCat: 03-28 16:18:57.795: WARN/ResourceType(8351): No package identifier when getting name for resource number 0x00000001 03-28 16:18:57.865: WARN/ImageV
Solution 1:
Try cleaning and building the project.
Android is searching the image with id resource 0x00000001, which is not correct.
If that doesn't works try deleting the "gen" folder and building again.
Good luck :)
Solution 2:
Strange, but the problem was with setViewValue
function - I was changing ListView
icon based on DB value and I didn't return true
there (returned false
) and hence I was getting this error.
Solution 3:
Looks like a compilation error. Check your console for a red error message when it tries to build.
Does you have a resource that you have called 1.png 1.gif 1.mp4?
You cannot have resources that have a filename of a number.
Post a Comment for "How To Fix Problem With Resources On Android?"