增加初始化功能

This commit is contained in:
2025-09-26 16:00:24 +08:00
parent 63f8668b77
commit d6675b7b20
22 changed files with 1408 additions and 46 deletions
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:width="1920dp" android:height="1080dp">
<bitmap android:src="@mipmap/bg"/>
</item>
<item
android:width="270dp"
android:height="258dp"
android:gravity="top|center_horizontal"
android:top="90dp">
<bitmap android:src="@drawable/img_init" android:scaleType="fitCenter"/>
</item>
</layer-list>
Binary file not shown.

After

Width:  |  Height:  |  Size: 999 KiB

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

+3 -1
View File
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Inbound" parent="android:Theme.Material.Light.NoActionBar" />
<style name="Theme.Inbound" parent="android:Theme.Material.Light.NoActionBar" >
<item name="android:windowBackground">@drawable/bg_splash</item>
</style>
</resources>