Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resources$NotFoundException: Resource is not a Drawable (color or path)?

Tags:

android

I have a textview, when it is clicked, I am populating a listView inside a dialog. This code used to work fine, but today it is throwing exception.

this is my code:

tvSelectedFont = (TextView)findViewById(R.id.lblQuoteSelectedFont);     tvSelectedFont.setOnClickListener(new View.OnClickListener() {         @Override         public void onClick(View v) {              ListView listView = new ListView(context);             listView.setAdapter(new ArrayAdapter<String>(context, android.R.layout.simple_list_item_1,                     new String[] {"Default", "Serif", "Monospace"}));             final Dialog dialog = new Dialog(context);             dialog.setContentView(listView);             dialog.setTitle(R.string.txt_settings_QuotefontName);              listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {                 @Override                 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {                     String selectedTypeFace = ((TextView)view).getText().toString();                     tvSelectedFont.setText(selectedTypeFace);                     switch(selectedTypeFace)                     {                         case "Serif":                             selectedQuoteTypeFace = Typeface.SERIF;                             break;                         case "Monospace":                             selectedQuoteTypeFace = Typeface.MONOSPACE;                             break;                         default:                             selectedQuoteTypeFace = Typeface.DEFAULT;                             break;                     }                     tvQuoteTextSample.setTypeface(selectedQuoteTypeFace, selectedQuoteFontStyle);                     dialog.dismiss();                 }             });              dialog.show();         }     }); 

The logcat error shows this:

Device driver API version: 29 User space API version: 29 03-17 14:33:24.701  23220-23220/com.example.manas.dailyquoteswidget E/﹕ mali: REVISION=Linux-r3p2-01rel3 BUILD_DATE=Tue Jul 22 19:59:34 KST 2014 03-17 14:33:27.926  23220-23220/com.example.manas.dailyquoteswidget E/AndroidRuntime﹕ FATAL EXCEPTION: main Process: com.example.manas.dailyquoteswidget, PID: 23220 android.content.res.Resources$NotFoundException: Resource is not a Drawable (color or path): TypedValue{t=0x2/d=0x7f0100a7 a=3}         at android.content.res.Resources.loadDrawable(Resources.java:3415)         at android.content.res.TypedArray.getDrawable(TypedArray.java:602)         at android.widget.AbsListView.<init>(AbsListView.java:1089)         at android.widget.ListView.<init>(ListView.java:152)         at android.widget.ListView.<init>(ListView.java:148)         at android.widget.ListView.<init>(ListView.java:144)         at com.example.manas.dailyquoteswidget.DailyQuotesWidgetConfigureActivity$6.onClick(DailyQuotesWidgetConfigureActivity.java:182)         at android.view.View.performClick(View.java:4640)         at android.view.View$PerformClick.run(View.java:19425)         at android.os.Handler.handleCallback(Handler.java:733)         at android.os.Handler.dispatchMessage(Handler.java:95)         at android.os.Looper.loop(Looper.java:146)         at android.app.ActivityThread.main(ActivityThread.java:5593)         at java.lang.reflect.Method.invokeNative(Native Method)         at java.lang.reflect.Method.invoke(Method.java:515)         at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283)         at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)         at dalvik.system.NativeStart.main(Native Method) 

Cant figure it out the problem. Any help please?

like image 378
Bluemarble Avatar asked Mar 17 '15 09:03

Bluemarble


2 Answers

I encountered this problem in the recent app I made. In my case, the problem was I put an image in the folder called drawable-v21, which is not available in older android API.

The solution is to put your drawable in drawable-...dpi folders too.

Hope that helps.

like image 72
Dũng Trần Trung Avatar answered Sep 19 '22 20:09

Dũng Trần Trung


In Android Studio change Project hierarchy to Project Files.

Then go to the res folder, you will see multiple drawable folders. Copy the images to appropriate folder(drawable) or based on Api level.

In my case image was present in drawable-24 folder therefore it was not available on api<24 devices.

Screenshot.

like image 42
Salman Avatar answered Sep 19 '22 20:09

Salman