137 lines
5.4 KiB
XML
137 lines
5.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView 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: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: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="16dp" />
|
|
</LinearLayout>
|
|
|
|
<!-- 완결 시리즈 섹션 -->
|
|
<LinearLayout
|
|
android:id="@+id/ll_completed_series"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="48dp"
|
|
android:orientation="vertical"
|
|
android:visibility="gone">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="24dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_completed_series"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/bold"
|
|
android:text="@string/screen_series_main_completed_title"
|
|
android:textColor="@color/white"
|
|
android:textSize="24sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_completed_series_all"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/regular"
|
|
android:text="@string/screen_series_main_completed_all"
|
|
android:textColor="#90A4AE"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_completed_series"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:clipToPadding="false"
|
|
android:paddingHorizontal="24dp" />
|
|
</LinearLayout>
|
|
|
|
<com.yandex.mobile.ads.banner.BannerAdView
|
|
android:id="@+id/yandex_inline_banner_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="48dp"
|
|
android:maxHeight="90dp" />
|
|
|
|
<!-- 추천 시리즈 섹션 -->
|
|
<LinearLayout
|
|
android:id="@+id/ll_recommend_series"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="48dp"
|
|
android:layout_marginBottom="24dp"
|
|
android:orientation="vertical"
|
|
android:visibility="gone">
|
|
|
|
<!-- 제목과 새로고침 -->
|
|
<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/bold"
|
|
android:text="@string/screen_series_main_recommend_title"
|
|
android:textColor="@color/white"
|
|
android:textSize="24sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_recommend_refresh"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:contentDescription="@null"
|
|
android:src="@drawable/ic_refresh" />
|
|
</LinearLayout>
|
|
|
|
<!-- 2단 Grid 리스트 -->
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_recommend_series"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:clipToPadding="false"
|
|
android:paddingHorizontal="24dp" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|