fix(live-room): 채팅 얼림 버튼 배치와 경고 문구를 정리한다

This commit is contained in:
2026-03-20 15:58:27 +09:00
parent 3a14bad2a4
commit 41f6ddd61b
7 changed files with 50 additions and 35 deletions

View File

@@ -63,7 +63,7 @@ android {
applicationId "kr.co.vividnext.sodalive"
minSdk 23
targetSdk 35
versionCode 229
versionCode 230
versionName "1.53.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View File

@@ -287,7 +287,7 @@ class LiveRoomActivity : BaseActivity<ActivityLiveRoomBinding>(ActivityLiveRoomB
private fun showChatFreezeWarning() {
Toast.makeText(
applicationContext,
getString(R.string.screen_live_room_chat_freeze_warning),
"🧊 채팅창이 얼었습니다.",
Toast.LENGTH_SHORT
).show()
}

View File

@@ -616,24 +616,6 @@
app:layout_constraintBottom_toTopOf="@+id/rl_input_chat"
app:layout_constraintEnd_toEndOf="parent">
<FrameLayout
android:id="@+id/tv_chat_freeze_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="13.3dp"
android:background="@drawable/bg_round_corner_10_99525252"
android:padding="10dp"
android:visibility="gone">
<ImageView
android:id="@+id/iv_chat_freeze"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center"
android:contentDescription="@null"
android:src="@drawable/ic_ice" />
</FrameLayout>
<FrameLayout
android:id="@+id/fl_speaker_mute"
android:layout_width="wrap_content"
@@ -669,6 +651,24 @@
android:src="@drawable/ic_mic_on" />
</FrameLayout>
<FrameLayout
android:id="@+id/tv_chat_freeze_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="13.3dp"
android:background="@drawable/bg_round_corner_10_99525252"
android:padding="10dp"
android:visibility="gone">
<ImageView
android:id="@+id/iv_chat_freeze"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center"
android:contentDescription="@null"
android:src="@drawable/ic_ice" />
</FrameLayout>
<FrameLayout
android:id="@+id/fl_donation_message_list"
android:layout_width="wrap_content"

View File

@@ -462,11 +462,6 @@
<string name="screen_live_room_menu_prefix">[Menu] </string>
<string name="screen_live_room_leave">Leave</string>
<string name="screen_live_room_change_listener">Change to listener</string>
<string name="screen_live_room_chat_freeze_off_label">Freeze OFF</string>
<string name="screen_live_room_chat_freeze_on_label">Freeze ON</string>
<string name="screen_live_room_chat_freeze_warning">Chat is frozen. You cannot type right now.</string>
<string name="screen_live_room_chat_freeze_started">Chat has been frozen.</string>
<string name="screen_live_room_chat_freeze_ended">Chat freeze has been disabled.</string>
<string name="screen_live_room_chat_delete_title">Delete chat</string>
<string name="screen_live_room_chat_delete_message_format">%1$s: %2$s</string>
<string name="screen_live_room_signature_off_label">Sign OFF</string>

View File

@@ -461,11 +461,6 @@
<string name="screen_live_room_menu_prefix">[メニュー] </string>
<string name="screen_live_room_leave">退出</string>
<string name="screen_live_room_change_listener">リスナー変更</string>
<string name="screen_live_room_chat_freeze_off_label">凍結 OFF</string>
<string name="screen_live_room_chat_freeze_on_label">凍結 ON</string>
<string name="screen_live_room_chat_freeze_warning">チャットが凍結中のため入力できません。</string>
<string name="screen_live_room_chat_freeze_started">チャットを凍結しました。</string>
<string name="screen_live_room_chat_freeze_ended">チャット凍結を解除しました。</string>
<string name="screen_live_room_chat_delete_title">チャット削除</string>
<string name="screen_live_room_chat_delete_message_format">%1$s: %2$s</string>
<string name="screen_live_room_signature_off_label">シグ OFF</string>

View File

@@ -461,11 +461,6 @@
<string name="screen_live_room_menu_prefix">[메뉴판] </string>
<string name="screen_live_room_leave">나가기</string>
<string name="screen_live_room_change_listener">리스너 변경</string>
<string name="screen_live_room_chat_freeze_off_label">얼림 OFF</string>
<string name="screen_live_room_chat_freeze_on_label">얼림 ON</string>
<string name="screen_live_room_chat_freeze_warning">채팅창이 얼려져 있어 입력할 수 없습니다.</string>
<string name="screen_live_room_chat_freeze_started">채팅창을 얼렸습니다.</string>
<string name="screen_live_room_chat_freeze_ended">채팅창 얼리기를 해제했습니다</string>
<string name="screen_live_room_chat_delete_title">채팅 삭제</string>
<string name="screen_live_room_chat_delete_message_format">%1$s: %2$s</string>
<string name="screen_live_room_signature_off_label">시그 OFF</string>