refactor(app): 优化 edit_start.xml 布局文件

- 移除了 RelativeLayout 的重复命名空间声明
- 添加了 fitsSystemWindows 属性以优化布局显示
- 调整了 RelativeLayout 的背景属性,使用 Android 系统背景颜色
This commit is contained in:
Cold-Mint 2025-02-09 10:21:02 +08:00
parent 5d4b9c7d29
commit 4179f3712c
Signed by: Cold-Mint
GPG Key ID: C5A9BF8A98E0CE99

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:background="?android:colorBackground">
<LinearLayout