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

后端 未结 3 717
轻奢々
轻奢々 2020-11-29 10:15

Actually, I have no idea why I have this error.

Follows the code hoping that there is everything useful for a diagnosis.

The structure of the app is a standa

3条回答
  •  甜味超标
    2020-11-29 10:33

    Your problem is the wrong placement of resources(images). You use (API 23) but resources for API 23 is null, because they only API 24 and up.

    Now all images marked (v24) this means that they are in drawables-v24 just move in drawable

    that'll solve your problem.

提交回复
热议问题