112 lines
4.1 KiB
XML
112 lines
4.1 KiB
XML
<?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:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:text="지금 "
|
|
android:textColor="@color/color_3bb9f1"
|
|
android:textSize="24sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:text="라이브중"
|
|
android:textColor="@color/white"
|
|
android:textSize="24sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_all_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:text="전체보기"
|
|
android:textColor="#78909C"
|
|
android:textSize="14sp" />
|
|
</RelativeLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_live_now"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="14dp"
|
|
android:clipToPadding="false"
|
|
android:paddingHorizontal="24dp"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_no_items"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="28dp"
|
|
android:background="@drawable/bg_round_corner_16_263238"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="16dp"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:contentDescription="@null"
|
|
android:src="@drawable/ic_no_item" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginVertical="10dp"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:gravity="center"
|
|
android:lineSpacingExtra="8dp"
|
|
android:text="마이페이지에서 본인인증을 하거나\n라이브를 예약하고 참여해보세요."
|
|
android:textColor="@color/white"
|
|
android:textSize="13sp"
|
|
tools:ignore="SmallSp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_refresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="16dp"
|
|
android:background="@drawable/bg_round_corner_26_7_transparent_909090"
|
|
android:gravity="center"
|
|
android:paddingVertical="11dp">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:contentDescription="@null"
|
|
android:src="@drawable/ic_refresh" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:text="새로고침"
|
|
android:textSize="14.7sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|