fix(home): 팔로잉 탭 후속 검증을 반영한다
This commit is contained in:
@@ -365,7 +365,7 @@
|
||||
android:orientation="vertical"
|
||||
android:paddingHorizontal="@dimen/spacing_14"
|
||||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||||
tools:listitem="@layout/item_home_following_news_content" />
|
||||
tools:listitem="@layout/view_feed_content" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
@@ -1,118 +0,0 @@
|
||||
<?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:background="@drawable/bg_feed_card"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/spacing_14">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_home_following_news_creator_profile"
|
||||
android:layout_width="42dp"
|
||||
android:layout_height="42dp"
|
||||
android:background="@drawable/bg_round_corner_999_263238"
|
||||
android:contentDescription="@null"
|
||||
android:scaleType="centerCrop"
|
||||
tools:src="@drawable/ic_placeholder_profile" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/spacing_8"
|
||||
android:layout_weight="1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_home_following_news_creator_nickname"
|
||||
style="@style/Typography.Body5"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="end"
|
||||
android:includeFontPadding="false"
|
||||
android:maxLines="1"
|
||||
android:textColor="@color/white"
|
||||
tools:text="크리에이터 이름" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_home_following_news_created_at"
|
||||
style="@style/Typography.Body6"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:ellipsize="end"
|
||||
android:includeFontPadding="false"
|
||||
android:maxLines="1"
|
||||
android:textColor="@color/gray_500"
|
||||
tools:text="2분 전" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_home_following_news_title"
|
||||
style="@style/Typography.Heading4"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/spacing_14"
|
||||
android:ellipsize="end"
|
||||
android:includeFontPadding="false"
|
||||
android:maxLines="1"
|
||||
android:textColor="@color/white"
|
||||
tools:text="콘텐츠 이름" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/spacing_8"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_home_following_news_label"
|
||||
style="@style/Typography.Caption3"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/bg_feed_category_tag"
|
||||
android:includeFontPadding="false"
|
||||
android:paddingHorizontal="@dimen/spacing_4"
|
||||
android:paddingVertical="2dp"
|
||||
android:textColor="@color/gray_100"
|
||||
tools:text="오디오" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/spacing_12"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_home_following_news_content"
|
||||
style="@style/Typography.Body3"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:includeFontPadding="false"
|
||||
android:maxLines="4"
|
||||
android:textColor="@color/white"
|
||||
tools:text="크리에이터가 남긴 최근 소식이 노출됩니다. 긴 내용은 말줄임 처리합니다." />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_home_following_news_thumbnail"
|
||||
android:layout_width="92dp"
|
||||
android:layout_height="92dp"
|
||||
android:layout_marginStart="@dimen/spacing_8"
|
||||
android:background="@drawable/bg_feed_community_image"
|
||||
android:contentDescription="@null"
|
||||
android:scaleType="centerCrop"
|
||||
tools:src="@drawable/ic_launcher_background" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
@@ -1,42 +0,0 @@
|
||||
<?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:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:paddingVertical="@dimen/spacing_8">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_home_following_news_rank"
|
||||
style="@style/Typography.Heading3"
|
||||
android:layout_width="32dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:includeFontPadding="false"
|
||||
android:textColor="@color/green_400"
|
||||
tools:text="1" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_home_following_news_rank_title"
|
||||
style="@style/Typography.Body4"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/spacing_8"
|
||||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:includeFontPadding="false"
|
||||
android:maxLines="1"
|
||||
android:textColor="@color/white"
|
||||
tools:text="최근 소식 제목" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_home_following_news_rank_count"
|
||||
style="@style/Typography.Body6"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/spacing_8"
|
||||
android:includeFontPadding="false"
|
||||
android:textColor="@color/gray_500"
|
||||
tools:text="999" />
|
||||
</LinearLayout>
|
||||
@@ -309,17 +309,15 @@
|
||||
<string name="home_recommendation_section_genre_creator_suffix">\u0020creators</string>
|
||||
<string name="home_recommendation_section_cheer_creators">Creators with recent cheers</string>
|
||||
<string name="home_recommendation_section_popular_community_posts">Popular community</string>
|
||||
<string name="screen_home_following_creators_title">Following creators</string>
|
||||
<string name="screen_home_following_on_air_title">On Air</string>
|
||||
<string name="screen_home_following_recent_chats_title">Recent chats</string>
|
||||
<string name="screen_home_following_monthly_schedules_title">Monthly schedule</string>
|
||||
<string name="screen_home_following_recent_news_title">Recent news</string>
|
||||
<string name="screen_home_following_on_air">On Air</string>
|
||||
<string name="screen_home_following_photo_content">Photo</string>
|
||||
<string name="screen_home_following_ranking_rank_format">No. %1$d</string>
|
||||
<string name="screen_home_following_creator_ranking_news_message">%1$s reached %2$s in this week\'s ranking!</string>
|
||||
<string name="screen_home_following_content_ranking_news_message">%1$s reached %2$s in this week\'s ranking!</string>
|
||||
<string name="screen_home_following_empty">No following updates yet.\nFollow creators you are interested in.</string>
|
||||
<string name="screen_home_following_error">Could not load following news.</string>
|
||||
<string name="home_recommendation_activity_live">Live</string>
|
||||
<string name="home_recommendation_activity_audio">Audio</string>
|
||||
<string name="home_recommendation_activity_community">Community</string>
|
||||
|
||||
@@ -309,17 +309,15 @@
|
||||
<string name="home_recommendation_section_genre_creator_suffix">のクリエイター</string>
|
||||
<string name="home_recommendation_section_cheer_creators">最近応援が多いクリエイター</string>
|
||||
<string name="home_recommendation_section_popular_community_posts">人気コミュニティ</string>
|
||||
<string name="screen_home_following_creators_title">フォロー中のクリエイター</string>
|
||||
<string name="screen_home_following_on_air_title">On Air</string>
|
||||
<string name="screen_home_following_recent_chats_title">最近のチャット</string>
|
||||
<string name="screen_home_following_monthly_schedules_title">今月のスケジュール</string>
|
||||
<string name="screen_home_following_recent_news_title">最近のお知らせ</string>
|
||||
<string name="screen_home_following_on_air">On Air</string>
|
||||
<string name="screen_home_following_photo_content">グラビア</string>
|
||||
<string name="screen_home_following_ranking_rank_format">%1$d位</string>
|
||||
<string name="screen_home_following_creator_ranking_news_message">%1$sさんが今週のランキング%2$sに入りました!</string>
|
||||
<string name="screen_home_following_content_ranking_news_message">%1$sが今週のランキング%2$sに入りました!</string>
|
||||
<string name="screen_home_following_empty">フォロー中のお知らせはまだありません。\n気になるクリエイターをフォローしてみましょう。</string>
|
||||
<string name="screen_home_following_error">フォロー中のお知らせを読み込めませんでした。</string>
|
||||
<string name="home_recommendation_activity_live">ライブ</string>
|
||||
<string name="home_recommendation_activity_audio">オーディオ</string>
|
||||
<string name="home_recommendation_activity_community">コミュニティ</string>
|
||||
|
||||
@@ -308,17 +308,15 @@
|
||||
<string name="home_recommendation_section_genre_creator_suffix">\u0020크리에이터</string>
|
||||
<string name="home_recommendation_section_cheer_creators">최근 응원이 많은 크리에이터</string>
|
||||
<string name="home_recommendation_section_popular_community_posts">인기 커뮤니티</string>
|
||||
<string name="screen_home_following_creators_title">팔로잉 크리에이터</string>
|
||||
<string name="screen_home_following_on_air_title">On Air</string>
|
||||
<string name="screen_home_following_recent_chats_title">최근 대화</string>
|
||||
<string name="screen_home_following_monthly_schedules_title">이달의 스케줄</string>
|
||||
<string name="screen_home_following_recent_news_title">최근 소식</string>
|
||||
<string name="screen_home_following_on_air">On Air</string>
|
||||
<string name="screen_home_following_photo_content">화보</string>
|
||||
<string name="screen_home_following_ranking_rank_format">%1$d위</string>
|
||||
<string name="screen_home_following_creator_ranking_news_message">%1$s님이 이번 주 랭킹 %2$s에 올랐어요!</string>
|
||||
<string name="screen_home_following_content_ranking_news_message">%1$s 콘텐츠가 이번 주 랭킹 %2$s에 올랐어요!</string>
|
||||
<string name="screen_home_following_empty">아직 팔로잉 소식이 없어요.\n관심 있는 크리에이터를 팔로우해 보세요.</string>
|
||||
<string name="screen_home_following_error">팔로잉 소식을 불러오지 못했습니다.</string>
|
||||
<string name="home_recommendation_activity_live">라이브</string>
|
||||
<string name="home_recommendation_activity_audio">오디오</string>
|
||||
<string name="home_recommendation_activity_community">커뮤니티</string>
|
||||
|
||||
Reference in New Issue
Block a user