Android Studio:图片在设备中不显示,但在设计中显示

Android Studio: a picture is not displaying in the device but it does in the design

我已将示例图片添加到我的应用程序中,但它没有显示在设备上。 怎么了?

要显示图片,您应该像下面这样使用app:srcCompat

<ImageView
            ...
            ...
            ...
            app:srcCompat="@drawable/resource_name" />

tools:srcCompat负责显示IDE中的文件。它不会在应用程序中显示图像。

加载图像的另一种方法是使用 Glide or Picasso 库。您可以在各自的自述文件中找到如何使用它们。