Android 找不到图片

Android can't find image

我在这里遇到了这个问题...似乎 ringer.png 不存在..并查看文件夹名称..没有 "Drawable"-words 问题在哪里?

因为图像在 drawable 中不可用,它在 mipmap 中可用。试试这个。

android:src="@mipmap/ringer_on"

复制所有这些图像并将它们放入 Drawable,因为 mipmap 仅用于我们的应用程序图标。

详情请参考http://android-developers.blogspot.co.uk/2014/10/getting-your-apps-ready-for-nexus-6-and.html link

 <ImageView
    android:id="@+id/imageView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="32dp"
    android:src="@mipmap/ic_login_logo" />

尝试使用 mipmap 而不是 drawable。