【发布时间】:2013-12-30 19:15:33
【问题描述】:
以下代码:
View inflate = inflater.inflate(R.layout.page, null);
Drawable img = getResources().getDrawable((Integer) (item.get("img")));
inflate.findViewById(R.id.page_img).setBackground(img);
产生以下错误:
java.lang.NoSuchMethodError: android.view.View.setBackground
我不知道为什么。我已经用R.drawable.img 尝试了 setBackground,但我得到了同样的错误。
【问题讨论】:
标签: android view nosuchmethoderror