我正在尝试在 MAC 上的 android-studio 中进行开发,我遇到了一个问题。在活动代码中,我不能引用位于 mipmap 文件夹中的图像。特别是我已经创建了一个通知:
...
Notification notify = new NotificationCompat.Builder(this)
.setContentTitle(title)
.setContentText(body)
.setSmallIcon(R.drawable.ic_launcher)
.setContentIntent(startPendingIntent)
.build();
...
我收到错误“无法解析符号ic_launcher”。奇怪也是问题,我无法将图标复制粘贴到 drawable 文件夹中,该文件夹为空。我应该在哪里以及如何放置图标以便在android studio的代码中可见?
答案 0 :(得分:13)
您需要使用R.mipmap.ic_launcher
答案 1 :(得分:1)
关闭Android Studio,然后打开Finder。转到项目目录。转到您项目的mipmap文件夹。复制图像,然后转到可绘制文件夹并将图像粘贴到各自的分辨率文件夹中。再次打开android studio,它们应该在drawable文件夹中。