我正在使用android studio 2.3.3,jpg和webp图像显示在android studio布局编辑器上但未显示何时在手机上安装app而不是显示为空白屏幕。 PNG图像工作正常。这是什么原因?
我的布局
<?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"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/menu_categories"
android:scaleType="fitXY"
/>
</LinearLayout>
编辑器ScreenShot内的布局
设备屏幕截图
请注意,PNG图像正在运行,但我想使用jpg或webp图像,因为它们占用的空间更少。
提前致谢