From 4f7f99c6ea914bcd38de78bd8371be566026b905 Mon Sep 17 00:00:00 2001
From: zuoxiao <470321431@qq.com>
Date: 星期三, 26 二月 2025 15:54:14 +0800
Subject: [PATCH] -为按钮和列表项添加波纹效果,以获得更好的视觉反馈 -改进MapFragment中的底部布局动画 -在MapFragment中添加设备状态和RTU地址显示 -更新BaseListResult以支持泛型类型 -为设备数据添加IntakeListResult和IntakeResult -通过数据库支持增强标记位置更新功能 -添加电话拨号意图以分隔标记详细信息 -通过过期检查改进磁贴缓存 -添加问题报告的确认对话框 -更新登录活动以限制用户名长度 -为波纹效果和UI元素添加新颜色 -重构XML布局以使用新的波纹图 -改进MapFragment中的错误处理和用户反馈
---
app/src/main/res/layout/fragment_my.xml | 49 +++++++++++++++++++++++++++++++++++++------------
1 files changed, 37 insertions(+), 12 deletions(-)
diff --git a/app/src/main/res/layout/fragment_my.xml b/app/src/main/res/layout/fragment_my.xml
index 6478c63..828294f 100644
--- a/app/src/main/res/layout/fragment_my.xml
+++ b/app/src/main/res/layout/fragment_my.xml
@@ -82,12 +82,13 @@
android:id="@+id/issueListRL"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
+ android:background="@drawable/my_item_ripple"
android:layout_below="@+id/headRL_top">
<TextView
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
- android:background="@color/white"
+
android:gravity="center_vertical"
android:paddingLeft="30dp"
android:text="闂鍒楄〃"
@@ -102,21 +103,45 @@
android:layout_marginRight="15dp"
android:src="@drawable/ic_right" />
</RelativeLayout>
-
-
<RelativeLayout
- android:id="@+id/passwordRL"
+ android:id="@+id/inspectListRL"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
- android:layout_below="@+id/issueListRL"
+ android:layout_marginTop="1dp"
+ android:background="@drawable/my_item_ripple"
+ android:layout_below="@+id/issueListRL">
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/item_height"
+ android:gravity="center_vertical"
+ android:paddingLeft="30dp"
+ android:text="宸℃璁板綍"
+ android:layout_marginTop="1dp"
+ android:textColor="@color/black"
+ android:textSize="@dimen/my_item_text_size" />
+
+ <ImageView
+ android:layout_width="25dp"
+ android:layout_height="25dp"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true"
+ android:layout_marginRight="15dp"
+ android:src="@drawable/ic_right" />
+ </RelativeLayout>
+
+ <RelativeLayout
+ android:id="@+id/changePSRL"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/item_height"
+ android:background="@drawable/my_item_ripple"
+ android:layout_below="@+id/inspectListRL"
android:layout_marginTop="1dp">
<TextView
android:id="@+id/changePS"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
-
- android:background="@color/white"
android:gravity="center_vertical"
android:paddingLeft="30dp"
android:text="淇敼瀵嗙爜"
@@ -135,14 +160,14 @@
android:id="@+id/refreshDataRL"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
- android:layout_below="@+id/passwordRL"
+ android:background="@drawable/my_item_ripple"
+ android:layout_below="@+id/changePSRL"
android:layout_marginTop="1dp">
<TextView
android:id="@+id/refreshDataTV"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
- android:background="@color/white"
android:gravity="center_vertical"
android:paddingLeft="30dp"
android:text="鏇存柊鏈湴鏁版嵁"
@@ -161,6 +186,7 @@
android:id="@+id/cleanDataRL"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
+ android:background="@drawable/my_item_ripple"
android:layout_below="@+id/refreshDataRL"
android:layout_marginTop="1dp">
@@ -168,7 +194,6 @@
android:id="@+id/cleanData"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
- android:background="@color/white"
android:gravity="center_vertical"
android:paddingLeft="30dp"
android:text="娓呴櫎缂撳瓨"
@@ -188,6 +213,7 @@
android:id="@+id/loginOutRL"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
+ android:background="@drawable/my_item_ripple"
android:layout_below="@+id/cleanDataRL"
android:layout_marginTop="1dp">
@@ -195,7 +221,6 @@
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
- android:background="@color/white"
android:gravity="center_vertical"
android:paddingLeft="30dp"
android:text="閫�鍑虹櫥褰�"
@@ -216,13 +241,13 @@
android:id="@+id/versionRL"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
+ android:background="@drawable/my_item_ripple"
android:layout_below="@+id/loginOutRL"
android:layout_marginTop="1dp">
<TextView
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
- android:background="@color/white"
android:gravity="center_vertical"
android:paddingLeft="30dp"
android:text="褰撳墠鐗堟湰"
--
Gitblit v1.8.0