Imageview 中的图像只有 androidstudio 没有在模拟器或 phone

Image in Imageview only androidstudio no in emulator or phone

我对图像有疑问。

在我在 2.2.0 上更新 androidstudio 之后,如果我编辑 xml 文件,所有构建的图像视图只有在 androidstudio 中才有图像。但是如果在 genymotion 中启动应用程序或在 phone 中启动 apk 图像不显示。

<ImageView
    android:layout_height="40sp"
    app:srcCompat="@drawable/additem_button"
    android:id="@+id/imageView36"
    android:layout_weight="1"
    android:scaleType="fitXY"
    android:layout_width="51sp"
    android:layout_gravity="right" />
</FrameLayout>

我在 ldpi、mdpi、hdpi、xhdpi、xxhdpi、xxxhdpi 中有所有图像,但我只启动应用程序 xxhdpi phones 和 运行 没有新的图像视图...请如何解决这个问题问题..谢谢..

我试试这个 运行 很好。

<ImageView
    android:layout_height="40sp"
    android:src="@drawable/additem_button"
    android:id="@+id/imageView36"
    android:layout_weight="1"
    android:scaleType="fitXY"
    android:layout_width="51sp"
    android:layout_gravity="right" />