feat(profile): 크리에이터 상세정보를 노출한다
This commit is contained in:
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_fancimm.png
Normal file
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_fancimm.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_instagram.png
Normal file
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_instagram.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_kakao.png
Normal file
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_kakao.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.8 KiB |
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_x.png
Normal file
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.8 KiB |
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_youtube.png
Normal file
BIN
app/src/main/res/drawable-xxhdpi/ic_sns_youtube.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.6 KiB |
3
app/src/main/res/drawable/ic_x_white.xml
Normal file
3
app/src/main/res/drawable/ic_x_white.xml
Normal 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" />
|
||||
225
app/src/main/res/layout/dialog_creator_detail.xml
Normal file
225
app/src/main/res/layout/dialog_creator_detail.xml
Normal 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>
|
||||
@@ -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 ></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>
|
||||
|
||||
@@ -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人 · 詳細情報 ></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>
|
||||
|
||||
@@ -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명 · 상세정보 ></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>
|
||||
|
||||
Reference in New Issue
Block a user