В части android моего приложения флаттера я пытаюсь добавить что-то на начальный пустой экран (с launch_background.xml
)
У меня есть styles.xml
как этот (по умолчанию с *) 1005 *)
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
Flutter draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
</resources>
Затем launch_background.xml
file (res > drawable
)
<?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="@mipmap/launch_image" />
</item> -->
</layer-list>
В данный момент показывается launch_image.png, который работает нормально.
Затем я создал файл danimation.xml
в папке drawable, который выглядит как
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true">
<item android:drawable="@drawable/anim1" android:duration="200" />
<item android:drawable="@drawable/anim2" android:duration="200" />
<item android:drawable="@drawable/anim3" android:duration="200" />
</animation-list>
Также создано 3 изображения (anim1.png, anim2.png, anim3.png) в drawable папка.
У меня вопрос, как включить это danimation.xml
в 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" />
<item android:drawable="@drawable:danimation" />
</item> -->
</layer-list>