资源未找到异常

时间:2016-08-20 14:31:18

标签: android exception android-arrayadapter logcat android-resources

您好我的适配器代码中有一个Resourcesnotfoundexception ..

代码:

   public class Bag_adapter extends ArrayAdapter<Data> implements Filterable {
   //in getview()  
        {
         try {
                    int i = getContext().getResources()
                            .getIdentifier(name().toLowerCase(), "drawable", getContext().getPackageName());
                Log.wtf("Called", "Drawable=" + i);

                    holder.icon.setImageResource(i);
                } catch (Exception e) {
                    Log.wtf("Called", "Error=" + e);
                }
        }

这是错误logcat:

08-20 19:58:24.732 12650-12650/com.bot.pokego A/Called: Drawable=android.content.res.Resources$NotFoundException: Resource ID #0x7f0200bf
08-20 19:58:24.786 12650-12650/com.bot.pokego A/Called: Drawable=2130837716

我试过清理,删除了构建文件夹........但仍然是同样的错误。

我正在使用Android Studio。

任何帮助将不胜感激!。

谢谢! inadvance:)。

1 个答案:

答案 0 :(得分:1)

检查资源文件夹。如果您将资源保留在更高版本的文件夹v21中并在较低版本上进行测试,则可能会出现此异常。

希望它有所帮助!!!