资源抽取未找到

时间:2018-04-28 17:34:33

标签: java android

当我在手机上安装我的应用程序时,它会立即崩溃,告诉我找不到可绘制的应用程序:

Resource "com.aaronapp.hideme:drawable/ic_clear" (7f07007a)  is not a Drawable (color or path): TypedValue{t=0x1/d=0x7f07007a a=-1 r=0x7f07007a}

这是找不到这个可绘制的地方:

<android.support.design.widget.FloatingActionButton
    android:id="@+id/clear_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentEnd="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/ic_clear"
    android:visibility="gone"
    app:backgroundTint="@android:color/white"
    app:fabSize="mini" />

以下是ic_clear.xml文件的屏幕截图,该文件位于我试图引用的drawable中,但它引发了错误:

enter image description here

这是什么问题?我的drawable文件夹中明显有ic_clear.xml ... 谢谢你的帮助!

1 个答案:

答案 0 :(得分:2)

您的所有资源都位于drawable-v24(这是针对Android版本24及更高版本)文件夹,只需将您的所有资源重新定位到drawable forlder并且它应该可以正常工作