186 lines
7.3 KiB
XML
186 lines
7.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_131313"
|
|
android:fillViewport="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="24dp">
|
|
|
|
<!-- 배너 섹션 -->
|
|
<LinearLayout
|
|
android:id="@+id/ll_banner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<com.zhpan.bannerview.BannerViewPager
|
|
android:id="@+id/banner_slider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false" />
|
|
|
|
<com.zhpan.indicator.IndicatorView
|
|
android:id="@+id/indicator_banner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="28dp" />
|
|
</LinearLayout>
|
|
|
|
<!-- 최근 대화한 캐릭터 섹션 -->
|
|
<LinearLayout
|
|
android:id="@+id/ll_latest_characters"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<!-- 제목 -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="24dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:text="최근 대화한 캐릭터"
|
|
android:textColor="@color/white"
|
|
android:textSize="20sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_latest_character_count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6dp"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:textColor="@color/color_fdca2f"
|
|
android:textSize="20sp"
|
|
tools:text="14" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- 프로필 리스트 -->
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_recent_characters"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:clipToPadding="false"
|
|
android:paddingHorizontal="24dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- 인기 캐릭터 섹션 -->
|
|
<LinearLayout
|
|
android:id="@+id/ll_popular_characters"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<!-- 제목과 전체보기 -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="24dp">
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:text="인기 캐릭터"
|
|
android:textColor="@color/white"
|
|
android:textSize="24sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_popular_character_all"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:text="전체보기"
|
|
android:textColor="#90A4AE"
|
|
android:textSize="14sp"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
|
|
<!-- 캐릭터 카드 리스트 -->
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_popular_characters"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:clipToPadding="false"
|
|
android:paddingHorizontal="24dp" />
|
|
</LinearLayout>
|
|
|
|
<!-- 신규 캐릭터 섹션 -->
|
|
<LinearLayout
|
|
android:id="@+id/ll_new_characters"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<!-- 제목과 전체보기 -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="24dp">
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:text="신규 캐릭터"
|
|
android:textColor="@color/white"
|
|
android:textSize="24sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_new_character_all"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:text="전체보기"
|
|
android:textColor="#90A4AE"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- 캐릭터 카드 리스트 -->
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_new_characters"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:clipToPadding="false"
|
|
android:paddingHorizontal="24dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- 큐레이션 섹션들 -->
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_curation_sections"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false" />
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|