gpt4 book ai didi

android - 无法解析符号@drawable/ic_launcher

转载 作者:IT老高 更新时间:2023-10-28 23:29:03 25 4
gpt4 key购买 nike

我的布局中有一个 ImageView,请参见下面的代码。当我尝试将 src 属性设置为我的启动器图标时,我收到以下错误:

Cannot resolve symbol '@drawable/ic_launcher'

ic_launcer.png 被添加到我的 drawables 文件夹中,见下图。为什么我不能在 ImageView 中引用我的图像?

项目结构:

Project structure

布局.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>

最佳答案

更改(您没有可绘制的文件夹):

@drawable/ic_launcher

收件人(您正在使用 mipmap 文件夹):

@mipmap/ic_launcher

mipmaps - 仅用于图标 - mipmap vs drawable folders

drawables - 用于图标以外的图像

据此Google blogpost :

It’s best practice to place your app icons in mipmap- folders (not the drawable- folders) because they are used at resolutions different from the device’s current density.

关于android - 无法解析符号@drawable/ic_launcher,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29243121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com