Files
sodalive-android/app/src/main/res/layout/dialog_member_profile.xml
klaus 6cb89ef09f 폰트 이름 변경
pretendard_bold -> bold
pretendard_regular -> regular
pretendard_medium -> medium
pretendard_light -> light
2026-01-22 22:55:14 +09:00

98 lines
3.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:background="@drawable/bg_round_corner_8_222222"
android:orientation="vertical"
android:paddingHorizontal="13.3dp"
android:paddingTop="13.3dp"
android:paddingBottom="20dp">
<RelativeLayout
android:id="@+id/rl_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="13.3dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/bold"
android:text="@string/screen_live_room_profile_title"
android:textColor="@color/color_eeeeee"
android:textSize="14.7sp" />
<ImageView
android:id="@+id/iv_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:contentDescription="@null"
android:src="@drawable/ic_close_white" />
</RelativeLayout>
<TextView
android:id="@+id/tv_nickname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="21.3dp"
android:fontFamily="@font/bold"
android:textColor="@color/color_eeeeee"
android:textSize="18.3sp"
tools:text="닉네임" />
<ImageView
android:id="@+id/iv_profile"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="21.3dp"
android:contentDescription="@null" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="21dp"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_block_member"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/bg_round_corner_8_transparent_3bb9f1"
android:fontFamily="@font/bold"
android:gravity="center"
android:paddingVertical="13dp"
android:text="@string/screen_live_room_block_title"
android:textColor="@color/color_3bb9f1" />
<TextView
android:id="@+id/tv_report_member"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="8dp"
android:layout_weight="1"
android:background="@drawable/bg_round_corner_8_transparent_3bb9f1"
android:fontFamily="@font/bold"
android:gravity="center"
android:paddingVertical="13dp"
android:text="@string/dialog_user_report_title"
android:textColor="@color/color_3bb9f1" />
<TextView
android:id="@+id/tv_report_member_profile"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/bg_round_corner_8_transparent_3bb9f1"
android:fontFamily="@font/bold"
android:gravity="center"
android:paddingVertical="13dp"
android:text="@string/dialog_member_profile_report_profile"
android:textColor="@color/color_3bb9f1" />
</LinearLayout>
</LinearLayout>