From 55b196ea2e28a8d859c85326f2147a4f7b7196de Mon Sep 17 00:00:00 2001 From: zuojincheng <lf_zuo@163.com> Date: 星期四, 10 四月 2025 10:58:32 +0800 Subject: [PATCH] feat(general): 新增开卡信息保存功能并优化界面布局- 新增 CardRegistrationBean 数据模型用于保存开卡信息 - 在数据库中添加 card_registration 表用于存储开卡记录 - 优化 NewCard2Activity 界面布局,调整样式和间距 - 添加协程支持,实现异步保存开卡信息到数据库 - 更新颜色配置,统一使用新加的 base_blue_bg 和 base_green_bg颜色 --- henanlibrary/src/main/res/layout/activity_home_hn.xml | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/henanlibrary/src/main/res/layout/activity_home_hn.xml b/henanlibrary/src/main/res/layout/activity_home_hn.xml index 9f99a4c..e82a6d2 100644 --- a/henanlibrary/src/main/res/layout/activity_home_hn.xml +++ b/henanlibrary/src/main/res/layout/activity_home_hn.xml @@ -26,7 +26,7 @@ android:layout_weight="1" android:gravity="center" android:text="鏂板崱寮�鎴�" - android:textColor="@color/text_selecter" + android:textColor="@color/text_selecter_color" android:textSize="@dimen/home_text_size" /> <TextView @@ -36,7 +36,7 @@ android:layout_weight="1" android:gravity="center" android:text="鍏呭��" - android:textColor="@color/text_selecter" + android:textColor="@color/text_selecter_color" android:textSize="@dimen/home_text_size" /> <TextView @@ -46,7 +46,7 @@ android:layout_weight="1" android:gravity="center" android:text="璇诲彇鍗$墖" - android:textColor="@color/text_selecter" + android:textColor="@color/text_selecter_color" android:textSize="@dimen/home_text_size" /> </LinearLayout> @@ -64,7 +64,7 @@ android:layout_weight="1" android:gravity="center" android:text="绠$悊绯荤粺" - android:textColor="@color/text_selecter" + android:textColor="@color/text_selecter_color" android:textSize="@dimen/home_text_size" /> <TextView @@ -74,7 +74,7 @@ android:layout_weight="1" android:gravity="center" android:text="鍙傛暟璁剧疆" - android:textColor="@color/text_selecter" + android:textColor="@color/text_selecter_color" android:textSize="@dimen/home_text_size" /> <TextView @@ -84,7 +84,7 @@ android:layout_weight="1" android:gravity="center" android:text="涓汉涓績" - android:textColor="@color/text_selecter" + android:textColor="@color/text_selecter_color" android:textSize="@dimen/home_text_size" /> </LinearLayout> -- Gitblit v1.8.0