165 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			165 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    xmlns:app="http://schemas.android.com/apk/res-auto"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="match_parent">
 | 
						|
 | 
						|
    <RelativeLayout
 | 
						|
        android:id="@+id/main_toolbar"
 | 
						|
        android:layout_width="0dp"
 | 
						|
        android:layout_height="?attr/actionBarSize"
 | 
						|
        android:paddingHorizontal="24dp"
 | 
						|
        app:layout_constraintEnd_toEndOf="parent"
 | 
						|
        app:layout_constraintStart_toStartOf="parent"
 | 
						|
        app:layout_constraintTop_toTopOf="parent">
 | 
						|
 | 
						|
        <ImageView
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_alignParentStart="true"
 | 
						|
            android:layout_centerVertical="true"
 | 
						|
            android:contentDescription="@null"
 | 
						|
            android:src="@drawable/img_text_logo" />
 | 
						|
 | 
						|
        <LinearLayout
 | 
						|
            android:id="@+id/ll_short_icon"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_alignParentEnd="true"
 | 
						|
            android:layout_centerVertical="true"
 | 
						|
            android:orientation="horizontal"
 | 
						|
            android:visibility="gone">
 | 
						|
 | 
						|
            <ImageView
 | 
						|
                android:id="@+id/iv_search"
 | 
						|
                android:layout_width="wrap_content"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:contentDescription="@null"
 | 
						|
                android:src="@drawable/ic_search_white" />
 | 
						|
 | 
						|
            <ImageView
 | 
						|
                android:id="@+id/iv_charge"
 | 
						|
                android:layout_width="wrap_content"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginHorizontal="24dp"
 | 
						|
                android:contentDescription="@null"
 | 
						|
                android:src="@drawable/ic_can_circle" />
 | 
						|
 | 
						|
            <ImageView
 | 
						|
                android:id="@+id/iv_message"
 | 
						|
                android:layout_width="25dp"
 | 
						|
                android:layout_height="25dp"
 | 
						|
                android:contentDescription="@null"
 | 
						|
                android:src="@drawable/ic_message" />
 | 
						|
        </LinearLayout>
 | 
						|
    </RelativeLayout>
 | 
						|
 | 
						|
    <androidx.core.widget.NestedScrollView
 | 
						|
        android:layout_width="0dp"
 | 
						|
        android:layout_height="0dp"
 | 
						|
        app:layout_constraintBottom_toBottomOf="parent"
 | 
						|
        app:layout_constraintEnd_toEndOf="parent"
 | 
						|
        app:layout_constraintStart_toStartOf="parent"
 | 
						|
        app:layout_constraintTop_toBottomOf="@+id/main_toolbar">
 | 
						|
 | 
						|
        <LinearLayout
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:orientation="vertical"
 | 
						|
            android:paddingVertical="24dp">
 | 
						|
 | 
						|
            <include
 | 
						|
                android:id="@+id/layout_live_now"
 | 
						|
                layout="@layout/layout_live_now"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginBottom="48dp" />
 | 
						|
 | 
						|
            <TextView
 | 
						|
                android:id="@+id/tv_community_post"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginHorizontal="24dp"
 | 
						|
                android:layout_marginBottom="14dp"
 | 
						|
                android:fontFamily="@font/pretendard_bold"
 | 
						|
                android:text="커뮤니티"
 | 
						|
                android:textColor="@color/color_3bb9f1"
 | 
						|
                android:textSize="26sp" />
 | 
						|
 | 
						|
            <androidx.recyclerview.widget.RecyclerView
 | 
						|
                android:id="@+id/rv_community_post"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginBottom="48dp"
 | 
						|
                android:clipToPadding="false"
 | 
						|
                android:paddingHorizontal="24dp"
 | 
						|
                android:visibility="gone" />
 | 
						|
 | 
						|
            <include
 | 
						|
                android:id="@+id/layout_recommend_live"
 | 
						|
                layout="@layout/layout_recommend_live"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginBottom="48dp" />
 | 
						|
 | 
						|
            <LinearLayout
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginHorizontal="24dp"
 | 
						|
                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="26sp" />
 | 
						|
 | 
						|
                <TextView
 | 
						|
                    android:layout_width="wrap_content"
 | 
						|
                    android:layout_height="wrap_content"
 | 
						|
                    android:fontFamily="@font/pretendard_bold"
 | 
						|
                    android:text="종료한 라이브"
 | 
						|
                    android:textColor="@color/white"
 | 
						|
                    android:textSize="26sp" />
 | 
						|
            </LinearLayout>
 | 
						|
 | 
						|
            <androidx.recyclerview.widget.RecyclerView
 | 
						|
                android:id="@+id/rv_latest_finished_live_channel"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginTop="16dp"
 | 
						|
                android:layout_marginBottom="48dp"
 | 
						|
                android:clipToPadding="false"
 | 
						|
                android:paddingHorizontal="24dp" />
 | 
						|
 | 
						|
 | 
						|
            <include
 | 
						|
                android:id="@+id/layout_recommend_channel"
 | 
						|
                layout="@layout/layout_live_recommend_channel"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginBottom="48dp" />
 | 
						|
 | 
						|
            <include
 | 
						|
                android:id="@+id/layout_live_reservation"
 | 
						|
                layout="@layout/layout_live_reservation"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content" />
 | 
						|
        </LinearLayout>
 | 
						|
    </androidx.core.widget.NestedScrollView>
 | 
						|
 | 
						|
    <ImageView
 | 
						|
        android:id="@+id/iv_make_room"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_marginEnd="16.7dp"
 | 
						|
        android:layout_marginBottom="16.7dp"
 | 
						|
        android:contentDescription="@null"
 | 
						|
        android:src="@drawable/btn_make_live"
 | 
						|
        android:visibility="gone"
 | 
						|
        app:layout_constraintBottom_toBottomOf="parent"
 | 
						|
        app:layout_constraintEnd_toEndOf="parent" />
 | 
						|
</androidx.constraintlayout.widget.ConstraintLayout>
 |