我已将图像添加到我想在 UI 中使用的 Android 项目中。我已将文件my-image.png添加到可绘制目录(添加到使用项目创建的所有 4 个可绘制目录),并将其添加ImageView
到布局中:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:layout_alignParentBottom="true"
android:layout_alignLeft="@+id/textView"
android:layout_marginBottom="63dp"
android:src="@drawable/my-image" />
问题是我收到以下错误:
渲染问题
无法将 @drawable/my-image 转换为可绘制对象
这是捕获:
另外,如果我尝试编译项目,我会收到以下错误:
Gradle:任务“:MyProject:processDebugResources”执行失败。
为什么我会收到这些错误,我该如何解决?我错过了什么吗?我刚刚开始Android开发。