2013-12-12 101 views
3

下面的代碼:View.setBackground拋出的NoSuchMethodError

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,但我得到了同樣的錯誤。在API 16,因此加入

回答

相關問題