feat(creator): 라이브 정렬 팝업 UI를 추가한다

This commit is contained in:
2026-06-18 00:11:28 +09:00
parent b639782e89
commit decc2cbb31
4 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/gray_900" />
<stroke
android:width="1dp"
android:color="@color/gray_700" />
<corners android:radius="@dimen/radius_14" />
</shape>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/gray_800" />
</shape>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_creator_channel_live_sort_options"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_creator_channel_live_sort_popup"
android:orientation="vertical">
<TextView
android:id="@+id/tv_creator_channel_live_sort_option_sample"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:includeFontPadding="false"
android:paddingHorizontal="@dimen/spacing_12"
android:paddingVertical="@dimen/spacing_8"
android:textColor="@color/white"
android:textSize="16sp" />
</LinearLayout>