位置项编辑框UI优化

This commit is contained in:
ZhanGSKen 2025-04-05 13:44:47 +08:00
parent 4cafbae077
commit 029d4193e1
2 changed files with 22 additions and 11 deletions

View File

@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle #Created by .winboll/winboll_app_build.gradle
#Sat Apr 05 04:29:59 GMT 2025 #Sat Apr 05 05:42:35 GMT 2025
stageCount=0 stageCount=0
libraryProject= libraryProject=
baseVersion=1.0 baseVersion=1.0
publishVersion=1.0.0 publishVersion=1.0.0
buildCount=443 buildCount=446
baseBetaVersion=1.0.1 baseBetaVersion=1.0.1

View File

@ -1,17 +1,18 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout <RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
<LinearLayout <LinearLayout
android:layout_above="@id/fragmentpositionsLinearLayout2"
android:orientation="horizontal" android:orientation="horizontal"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="80dp" android:layout_height="80dp"
android:padding="10dp" android:padding="10dp"
android:gravity="center_vertical"> android:gravity="center_vertical"
android:id="@+id/fragmentpositionsLinearLayout1">
<ScrollView <ScrollView
android:layout_width="match_parent" android:layout_width="match_parent"
@ -28,10 +29,12 @@
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:layout_above="@id/fragmentpositionsLinearLayout3"
android:orientation="horizontal" android:orientation="horizontal"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="80dp" android:layout_height="80dp"
android:padding="10dp"> android:padding="10dp"
android:id="@+id/fragmentpositionsLinearLayout2">
<ScrollView <ScrollView
android:layout_width="match_parent" android:layout_width="match_parent"
@ -48,10 +51,12 @@
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:layout_above="@id/recycler_view"
android:orientation="horizontal" android:orientation="horizontal"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="right|center_vertical"> android:gravity="right|center_vertical"
android:id="@+id/fragmentpositionsLinearLayout3">
<Button <Button
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -76,11 +81,17 @@
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view" android:id="@+id/recycler_view"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="0dp" android:layout_height="200dp"
android:layout_weight="1.0"
android:background="@drawable/recycler_view_border" android:background="@drawable/recycler_view_border"
android:padding="2dp" android:padding="2dp"
android:layout_margin="2dp"/> android:layout_margin="2dp"
android:layout_alignParentBottom="true"/>
</LinearLayout> <LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/recycler_view"/>
</RelativeLayout>