- 라이브 우측 상단의 메시지 아이콘 색상 변경

This commit is contained in:
klaus 2025-03-24 21:07:04 +09:00
parent bd851f6afd
commit 089534fb47
3 changed files with 6 additions and 10 deletions

View File

@ -18,6 +18,9 @@ class MessageFragment : BaseFragment<FragmentMessageBinding>(FragmentMessageBind
} }
private fun setupView() { private fun setupView() {
binding.toolbar.tvBack.text = "메시지"
binding.toolbar.tvBack.setOnClickListener { requireActivity().finish() }
val tabs = binding.tabs val tabs = binding.tabs
tabs.addTab(tabs.newTab().setText("문자").setTag("message")) tabs.addTab(tabs.newTab().setText("문자").setTag("message"))
tabs.addTab(tabs.newTab().setText("음성").setTag("voice")) tabs.addTab(tabs.newTab().setText("음성").setTag("voice"))

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -5,16 +5,9 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical"> android:orientation="vertical">
<TextView <include
android:layout_width="match_parent" android:id="@+id/toolbar"
android:layout_height="50dp" layout="@layout/detail_toolbar" />
android:background="@color/black"
android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center_vertical"
android:paddingHorizontal="13.3dp"
android:text="메시지"
android:textColor="@color/color_eeeeee"
android:textSize="18.3sp" />
<com.google.android.material.tabs.TabLayout <com.google.android.material.tabs.TabLayout
android:id="@+id/tabs" android:id="@+id/tabs"