Resources NotFoundException?

前端 未结 10 1690
清歌不尽
清歌不尽 2020-11-27 19:01

I\'m getting crash reports from android marketplace:

android.content.res.Resources$NotFoundException: Resource ID #0x....

I get about 17 of

10条回答
  •  抹茶落季
    2020-11-27 19:15

    This could also happen if the resource you are referring to (lets call it ResA) is in-turn referring to a resource which is missing (lets call it ResB). Android will raise the ResourceNotFoundException for ResA even though whats really missing is ResB. Such is life!

    In my case, ResB was defined in the values-swxxxdp but not in values. Hence I was getting this exception on phones but not on tablets.

提交回复
热议问题