我尝试在闪屏中添加闪屏,我将闪屏图像放置在drawable文件夹中并更新launch_background.xml,但是与原始图像相比,图像质量非常低。 如何在初始画面中获取原始图像
<?xml version="1.0" encoding="utf-8"?><!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<item>
<bitmap
android:gravity="center"
android:src="@drawable/splash" />
</item>
</layer-list>