您好我的适配器代码中有一个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:)。
答案 0 :(得分:1)
检查资源文件夹。如果您将资源保留在更高版本的文件夹v21中并在较低版本上进行测试,则可能会出现此异常。
希望它有所帮助!!!