简体   繁体   English

Android资源链接失败。 所有可绘制文件夹中均存在图像,但错误提示未找到

[英]Android resource linking failed. Image is present in all drawable folders but the error says it is not found

I already have the images in my drawable folders. 我的可绘制文件夹中已经有图像。 They were working earlier but now it shows that the resource is not found. 他们早先在工作,但现在表明找不到资源。 This is basically with all images. 这基本上与所有图像有关。

I am using ImageView and android:src=@drawable/filename 我正在使用ImageViewandroid:src=@drawable/filename

I had a similar issue with the new version of Android Studio (3.3). 我在新版本的Android Studio(3.3)中遇到了类似的问题。 If you just updated the software and suddenly it stops working, open your build.gradle file and remove this line: 如果您只是更新了该软件而突然停止运行,请打开build.gradle文件并删除以下行:

apply plugin: 'com.android.application'

android {
    ...
    defaultConfig {
        ...

        vectorDrawables.useSupportLibrary = true // This line here
    }
    ...

It fixed the issue for me. 它为我解决了这个问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Android studio 错误:“Android 资源链接失败。 错误:链接引用失败”与谷歌服务 API - Android studio error: “Android resource linking failed. error: failed linking references” with google services API 资源链接失败,错误:资源 android:attr/dialogCornerRadius 未找到 - resource linking failed, error: resource android:attr/dialogCornerRadius not found Android XML说在可绘制文件夹中找不到图像? - Android XML says image is not found in drawable folder? "<i>Android resource linking failed.<\/i> Android 资源链接失败。<\/b> <i>See the console for details<\/i>有关详细信息,请参阅控制台<\/b>" - Android resource linking failed. See the console for details Android 资源链接失败 - 在 xml 中未发现语法错误 - Android resource linking failed - no syntax error found in xml Android可绘制链接失败 - Android drawable linking failed 在drawable中找不到android eclipse资源图片 - android eclipse resource image not found in drawable Android 资源链接失败 datetimepicker attrs not found - Android resource linking failed datetimepicker attrs not found Android资源链接失败(找不到任何解决方案) - Android resource linking failed (not found any solution) 未找到资源链接失败。 错误:链接文件资源失败 - resource linking failed not found. error: failed linking file resources
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM