feat(profile): 크리에이터 상세정보를 노출한다

This commit is contained in:
2026-02-25 15:02:50 +09:00
parent c74d27f4ab
commit 5b83ae69dd
17 changed files with 601 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_close_white" />

View File

@@ -0,0 +1,225 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_round_corner_8_222222">
<ImageView
android:id="@+id/iv_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_marginTop="24dp"
android:layout_marginEnd="24dp"
android:contentDescription="@null"
android:src="@drawable/ic_x_white" />
<ScrollView
android:id="@+id/sv_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_below="@id/iv_close"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
android:layout_marginTop="12dp"
android:scrollbars="none">
<LinearLayout
android:id="@+id/ll_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingHorizontal="24dp">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/iv_profile"
android:layout_width="0dp"
android:layout_height="0dp"
android:contentDescription="@null"
android:scaleType="centerCrop"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:src="@drawable/ic_place_holder" />
</androidx.constraintlayout.widget.ConstraintLayout>
<TextView
android:id="@+id/tv_nickname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:fontFamily="@font/bold"
android:textColor="@color/white"
android:textSize="36sp"
tools:text="크리에이터 닉네임" />
<LinearLayout
android:id="@+id/ll_section_debut"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:orientation="vertical">
<TextView
android:id="@+id/tv_debut_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:text="@string/screen_creator_detail_debut"
android:textColor="@color/color_b0bec5"
android:textSize="16sp" />
<TextView
android:id="@+id/tv_debut_value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:fontFamily="@font/bold"
android:textColor="@color/white"
android:textSize="20sp"
tools:text="D-17" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll_section_live_count"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:orientation="vertical">
<TextView
android:id="@+id/tv_live_count_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:text="@string/screen_creator_detail_live_count"
android:textColor="@color/color_b0bec5"
android:textSize="16sp" />
<TextView
android:id="@+id/tv_live_count_value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:fontFamily="@font/bold"
android:textColor="@color/white"
android:textSize="20sp"
tools:text="1,234" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll_section_live_time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:orientation="vertical">
<TextView
android:id="@+id/tv_live_time_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:text="@string/screen_creator_detail_live_time"
android:textColor="@color/color_b0bec5"
android:textSize="16sp" />
<TextView
android:id="@+id/tv_live_time_value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:fontFamily="@font/bold"
android:textColor="@color/white"
android:textSize="20sp"
tools:text="2,345" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll_section_live_contributor_count"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:orientation="vertical">
<TextView
android:id="@+id/tv_live_contributor_count_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:text="@string/screen_creator_detail_live_contributor_count"
android:textColor="@color/color_b0bec5"
android:textSize="16sp" />
<TextView
android:id="@+id/tv_live_contributor_count_value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:fontFamily="@font/bold"
android:textColor="@color/white"
android:textSize="20sp"
tools:text="12,345" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll_section_content_count"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:orientation="vertical">
<TextView
android:id="@+id/tv_content_count_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:text="@string/screen_creator_detail_content_count"
android:textColor="@color/color_b0bec5"
android:textSize="16sp" />
<TextView
android:id="@+id/tv_content_count_value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:fontFamily="@font/bold"
android:textColor="@color/white"
android:textSize="20sp"
tools:text="567" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll_section_sns"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_marginBottom="24dp"
android:orientation="vertical">
<TextView
android:id="@+id/tv_sns_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:text="@string/screen_creator_detail_sns"
android:textColor="@color/color_b0bec5"
android:textSize="16sp" />
<LinearLayout
android:id="@+id/ll_sns_icons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:gravity="center_vertical"
android:orientation="horizontal" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>

View File

@@ -774,7 +774,14 @@
<string name="error_invalid_request">Invalid request.</string>
<string name="screen_user_profile_share_channel">Share channel</string>
<string name="screen_user_profile_follower_list">Follower list</string>
<string name="screen_user_profile_follower_count">Followers %1$s</string>
<string name="screen_user_profile_follower_count">Followers %1$s · Details &gt;</string>
<string name="screen_creator_detail_debut">Debut</string>
<string name="screen_creator_detail_debut_before">Before debut</string>
<string name="screen_creator_detail_live_count">Total live sessions</string>
<string name="screen_creator_detail_live_time">Cumulative live time</string>
<string name="screen_creator_detail_live_contributor_count">Cumulative live participants</string>
<string name="screen_creator_detail_content_count">Registered content count</string>
<string name="screen_creator_detail_sns">SNS</string>
<string name="screen_user_profile_latest_content_scheduled">Scheduled</string>
<string name="screen_user_profile_latest_content_point">Points</string>
<string name="screen_user_profile_live_title">Live</string>

View File

@@ -774,7 +774,14 @@
<string name="error_invalid_request">無効なリクエストです。</string>
<string name="screen_user_profile_share_channel">チャンネル共有</string>
<string name="screen_user_profile_follower_list">フォロワーリスト</string>
<string name="screen_user_profile_follower_count">フォロワー %1$s人</string>
<string name="screen_user_profile_follower_count">フォロワー %1$s人 · 詳細情報 &gt;</string>
<string name="screen_creator_detail_debut">デビュー</string>
<string name="screen_creator_detail_debut_before">デビュー前</string>
<string name="screen_creator_detail_live_count">ライブ総回数</string>
<string name="screen_creator_detail_live_time">ライブ累積時間</string>
<string name="screen_creator_detail_live_contributor_count">ライブ累積参加者</string>
<string name="screen_creator_detail_content_count">登録コンテンツ数</string>
<string name="screen_creator_detail_sns">SNS</string>
<string name="screen_user_profile_latest_content_scheduled">公開予定</string>
<string name="screen_user_profile_latest_content_point">ポイント</string>
<string name="screen_user_profile_live_title">ライブ</string>

View File

@@ -773,7 +773,14 @@
<string name="error_invalid_request">잘못된 요청입니다.</string>
<string name="screen_user_profile_share_channel">채널 공유</string>
<string name="screen_user_profile_follower_list">팔로워 리스트</string>
<string name="screen_user_profile_follower_count">팔로워 %1$s명</string>
<string name="screen_user_profile_follower_count">팔로워 %1$s명 · 상세정보 &gt;</string>
<string name="screen_creator_detail_debut">데뷔</string>
<string name="screen_creator_detail_debut_before">데뷔전</string>
<string name="screen_creator_detail_live_count">라이브 총 횟수</string>
<string name="screen_creator_detail_live_time">라이브 누적 시간</string>
<string name="screen_creator_detail_live_contributor_count">라이브 누적 참여자</string>
<string name="screen_creator_detail_content_count">등록 콘텐츠 수</string>
<string name="screen_creator_detail_sns">SNS</string>
<string name="screen_user_profile_latest_content_scheduled">오픈예정</string>
<string name="screen_user_profile_latest_content_point">포인트</string>
<string name="screen_user_profile_live_title">라이브</string>