feat(character-detail): 캐릭터 상세

- 탭 UI 추가
This commit is contained in:
2025-08-22 03:39:11 +09:00
parent 52c1f61109
commit 989a0f361b
6 changed files with 117 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/color_131313"
android:padding="24dp">
<TextView
android:id="@+id/tv_empty_gallery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="갤러리 콘텐츠가 없습니다."
android:textColor="@color/white"
android:textSize="16sp"
android:layout_gravity="center" />
</FrameLayout>