我開始與Android,我想要添加一個邊框到單元格描述in this answer。所以,我創建了cell_background.xml文件,Eclipse的創造res\drawable
,幷包含NotFoundException當尋找可繪製資源
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape= "rectangle" >
<solid android:color="#000"/>
<stroke android:width="1dp" android:color="#ff9"/>
</shape>
看了有與繪製文件夾的幾個問題,我複製它逐字到res\drawable-*dpi
目錄
現在,在下面的行
Drawable drawable = Resources.getSystem().getDrawable(R.drawable.cell_background);
我的應用程序崩潰與此異常
12-16 14:26:28.624: E/AndroidRuntime(533): Caused by: android.content.res.Resources$NotFoundException: Resource ID #0x7f020000
項目和模擬器都設置爲v3.0
任何想法?我已經清理並重建了該項目,但仍然崩潰。
嘗試清洗項目 – 2011-12-16 14:39:33
已經完成,但由於 – SJuan76 2011-12-16 14:40:40