2012-02-29 147 views
2

我試圖從自定義SimpleCursorAdapter中設置一個可繪製的ImageView。這是我正在使用的代碼。

@Override 
public void bindView(View view, Context context, Cursor cursor) { 
    super.bindView(view, context, cursor); 
    ImageView i = (ImageView) view.findViewById(R.id.icon); 
    switch(Integer.parseInt(cursor.getString(4))){ 
    case 0: 
     Drawable drawable = null; 
     try { 
      drawable = Resources.getSystem().getDrawable(R.drawable.andro_icon); 
     } catch (NotFoundException e) { 
      e.printStackTrace(); 
     } 
     i.setImageDrawable(drawable); 

但這接球Resources$NotFoundException

02-29 06:39:48.467: W/System.err(13511): android.content.res.Resources$NotFoundException: Resource ID #0x7f02000c 

R.drawable.andro_icon存在的資源,代碼編譯沒有任何問題,我試圖清理和重建項目,並重新啓動蝕。這裏發生了什麼事?

+0

通過添加'drawable = context.getResources()。getDrawable(R.drawable.andro_icon);'修復。 – 2012-02-29 01:28:42

回答

3

你打電話給Resources.getSystem()但你想要應用程序資源,而不是系統資源。取而代之:

context.getResources().getDrawable(R.drawable.andro_icon); 
+0

謝謝,它的工作 – 2012-02-29 01:30:49

相關問題