我的布局中有ImageView
,请参阅下面的代码。当我尝试将src
属性设置为我的启动器图标时,我收到以下错误:
Cannot resolve symbol '@drawable/ic_launcher'
ic_launcer.png已添加到我的drawables文件夹中,请参见下图。为什么我不能在ImageView
中引用我的图片?
项目结构:
Layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_weight="1"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:src="@drawable/ic_launcher"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:35)
更改(您没有可绘制的文件夹):
@drawable/ic_launcher
收件人(您使用的是mipmap文件夹):
@mipmap/ic_launcher
mipmap - 仅用于图标 - mipmap vs drawable folders
drawables - 用于图标以外的图像
最佳做法是将应用程序图标放在mipmap文件夹中(而不是 drawable-文件夹)因为它们的使用分辨率不同于 设备的电流密度。
答案 1 :(得分:4)
您的drawable
位于mipmap
内,应该用于app-launcher。如果要将其用作drawable,则应将其复制到drawable/
文件夹