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

Android

Android Problem Overview


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/AndroidRuntimeFATAL 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?

Android Solutions


Solution 1 - Android

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.

Solution 2 - Android

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.

Solution 3 - Android

On the Mac in finder, I just simply moved all the files in the folder ../drawable/drawable-24 to /drawable and everything worked both on older android versions and Oreo. Also when you copy and paste the images into Android Studio make sure to paste them into drawable not drawable//drawable-24 which may be the default.

Solution 4 - Android

I figured it out, it was not an issue with the code, but the theme. I recently changed the theme from android:theme="@style/AppTheme"to android:theme="@style/Theme.AppCompat.NoActionBar" after that the problem started. I reverted back the old AppTheme thene it started working again. It seems that the NoActionBar theme was not compatible for dialog boxes.

Solution 5 - Android

I ran into this error in a different situation, and it turned out that I'd accidentally set a drawable to R.id.something instead of R.drawable.something!

Solution 6 - Android

Make sure you followed the above solutions, try this if non-of-them worked for you.

In my case, the problem was due to drawable icons in only hdpi image resolution. Change these icons to the folder, which contains xhdpi, mdpi, xxhdpi and xxxhdpi resolution also.

And that solved my problem.

PS:

I convert icons to different image resolution by installing plugin "Android drawable importer".

Solution 7 - Android

Maybe your view background resource not in drawable dir, in color. view background not support resource in color.

view background like this

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:state_selected="true">
            <shape>
                <solid android:color="#ffffffff"/>
            </shape>
        </item>
        <item android:state_selected="false">
            <shape>
                <solid android:color="#00000000"/>
            </shape>
        </item>
    </selector>

Solution 8 - Android

You can get it working by making sure that your drawable.xml not included (v24)

Solution 9 - Android

<ImageView
...
            android:src="@drawable/realtconsult" />

If you will write it from a view then this will works.

Solution 10 - Android

There are more than one folder included in drawable folders(not visible), if you get these kind of error then please copy paste the file on which error occured to all the directories or atleast copy paste to night and normal drwable folder

enter image description here

Solution 11 - Android

When you put an image into the drawable folder, by default they are -v24 named at the end.

If you are not sure, just drag and drop the image again into the drawable folder. Make sure the name is not -v24 at the end.

Solution for old APIs

Solution 12 - Android

move all your ic_xyz.xml folders to drawable (v24) ie select your folder which is having this issue and move it to or select---> refactor--->move file-->(change the path) to Drawable(v24).

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBluemarbleView Question on Stackoverflow
Solution 1 - AndroidDũng Trần TrungView Answer on Stackoverflow
Solution 2 - AndroidSalmanView Answer on Stackoverflow
Solution 3 - AndroidDr. Roger WebsterView Answer on Stackoverflow
Solution 4 - AndroidBluemarbleView Answer on Stackoverflow
Solution 5 - AndroidSamView Answer on Stackoverflow
Solution 6 - AndroidmeyasirView Answer on Stackoverflow
Solution 7 - AndroidlingyfhView Answer on Stackoverflow
Solution 8 - AndroidAbdelaziz refaatView Answer on Stackoverflow
Solution 9 - AndroidIefimenko IevgenView Answer on Stackoverflow
Solution 10 - AndroidSatish SinghView Answer on Stackoverflow
Solution 11 - AndroidJ A S K I E RView Answer on Stackoverflow
Solution 12 - Androidsangeet shikha robinsonView Answer on Stackoverflow