From e48010cae85c8c3a51923c9d5e335704c07abe73 Mon Sep 17 00:00:00 2001 From: kaixed Date: Thu, 12 Dec 2024 17:55:42 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E8=81=8A=E5=A4=A9?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E6=AF=8F=E6=9D=A1=E6=B6=88=E6=81=AF=E4=B8=8A?= =?UTF-8?q?=E7=9A=84=E5=A5=BD=E5=8F=8B=E6=98=B5=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 增加聊天界面每条消息上的好友昵称,以便于后面适配群聊界面 --- .idea/GitCommitMessageStorage.xml | 14 +----- .../kchat/ui/activity/LaunchActivity.kt | 4 +- .../layout/chat_recycle_item_custom_mine.xml | 49 ------------------- .../chat_recycle_item_custom_normal.xml | 21 ++++++-- .../layout/chat_recycle_item_custom_other.xml | 49 ------------------- .../layout/chat_recycle_item_image_mine.xml | 38 -------------- .../layout/chat_recycle_item_image_normal.xml | 20 ++++++-- .../layout/chat_recycle_item_image_other.xml | 38 -------------- .../chat_recycle_item_location_mine.xml | 19 ------- .../chat_recycle_item_location_other.xml | 19 ------- .../chat_recycle_item_red_packet_mine.xml | 19 ------- .../chat_recycle_item_red_packet_other.xml | 19 ------- .../layout/chat_recycle_item_voice_mine.xml | 27 ---------- .../layout/chat_recycle_item_voice_other.xml | 27 ---------- 14 files changed, 36 insertions(+), 327 deletions(-) delete mode 100644 app/src/main/res/layout/chat_recycle_item_custom_mine.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_custom_other.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_image_mine.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_image_other.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_location_mine.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_location_other.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_red_packet_mine.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_red_packet_other.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_voice_mine.xml delete mode 100644 app/src/main/res/layout/chat_recycle_item_voice_other.xml diff --git a/.idea/GitCommitMessageStorage.xml b/.idea/GitCommitMessageStorage.xml index 3b56900..e4fd56a 100644 --- a/.idea/GitCommitMessageStorage.xml +++ b/.idea/GitCommitMessageStorage.xml @@ -2,19 +2,7 @@ \ No newline at end of file diff --git a/app/src/main/java/com/kaixed/kchat/ui/activity/LaunchActivity.kt b/app/src/main/java/com/kaixed/kchat/ui/activity/LaunchActivity.kt index 6f8c931..2544b26 100644 --- a/app/src/main/java/com/kaixed/kchat/ui/activity/LaunchActivity.kt +++ b/app/src/main/java/com/kaixed/kchat/ui/activity/LaunchActivity.kt @@ -39,7 +39,6 @@ class LaunchActivity : BaseActivity() { } - @SuppressLint("DiscouragedApi", "InternalInsetResource") private fun getStatusBarHeight(): Int { var result = 0 @@ -51,7 +50,6 @@ class LaunchActivity : BaseActivity() { return result } - private fun navigateToMain() { val intent = Intent(this, MainActivity::class.java) startActivity(intent) @@ -67,4 +65,4 @@ class LaunchActivity : BaseActivity() { startActivity(Intent(this, RegisterActivity::class.java)) } } -} \ No newline at end of file +} diff --git a/app/src/main/res/layout/chat_recycle_item_custom_mine.xml b/app/src/main/res/layout/chat_recycle_item_custom_mine.xml deleted file mode 100644 index f0c4fa2..0000000 --- a/app/src/main/res/layout/chat_recycle_item_custom_mine.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_custom_normal.xml b/app/src/main/res/layout/chat_recycle_item_custom_normal.xml index dfec6b1..02fd07d 100644 --- a/app/src/main/res/layout/chat_recycle_item_custom_normal.xml +++ b/app/src/main/res/layout/chat_recycle_item_custom_normal.xml @@ -16,6 +16,18 @@ android:textSize="12sp" app:layout_constraintTop_toTopOf="parent" /> + + + app:layout_constraintTop_toBottomOf="@id/tv_nickname" + app:layout_goneMarginTop="0dp" /> - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_image_mine.xml b/app/src/main/res/layout/chat_recycle_item_image_mine.xml deleted file mode 100644 index 710dfdd..0000000 --- a/app/src/main/res/layout/chat_recycle_item_image_mine.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_image_normal.xml b/app/src/main/res/layout/chat_recycle_item_image_normal.xml index d50bd64..b95beab 100644 --- a/app/src/main/res/layout/chat_recycle_item_image_normal.xml +++ b/app/src/main/res/layout/chat_recycle_item_image_normal.xml @@ -21,19 +21,33 @@ android:layout_height="35dp" android:layout_marginVertical="20dp" android:layout_marginStart="10dp" - app:layout_constraintStart_toStartOf="parent" android:src="@drawable/ic_avatar" + app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@id/tv_timer" app:roundPercent="0.3" /> + + diff --git a/app/src/main/res/layout/chat_recycle_item_image_other.xml b/app/src/main/res/layout/chat_recycle_item_image_other.xml deleted file mode 100644 index e33695e..0000000 --- a/app/src/main/res/layout/chat_recycle_item_image_other.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_location_mine.xml b/app/src/main/res/layout/chat_recycle_item_location_mine.xml deleted file mode 100644 index b464f46..0000000 --- a/app/src/main/res/layout/chat_recycle_item_location_mine.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_location_other.xml b/app/src/main/res/layout/chat_recycle_item_location_other.xml deleted file mode 100644 index b464f46..0000000 --- a/app/src/main/res/layout/chat_recycle_item_location_other.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_red_packet_mine.xml b/app/src/main/res/layout/chat_recycle_item_red_packet_mine.xml deleted file mode 100644 index b464f46..0000000 --- a/app/src/main/res/layout/chat_recycle_item_red_packet_mine.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_red_packet_other.xml b/app/src/main/res/layout/chat_recycle_item_red_packet_other.xml deleted file mode 100644 index b464f46..0000000 --- a/app/src/main/res/layout/chat_recycle_item_red_packet_other.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_voice_mine.xml b/app/src/main/res/layout/chat_recycle_item_voice_mine.xml deleted file mode 100644 index 26dc561..0000000 --- a/app/src/main/res/layout/chat_recycle_item_voice_mine.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/chat_recycle_item_voice_other.xml b/app/src/main/res/layout/chat_recycle_item_voice_other.xml deleted file mode 100644 index 26dc561..0000000 --- a/app/src/main/res/layout/chat_recycle_item_voice_other.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - \ No newline at end of file