36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="wrap_content"
 | 
						|
    android:layout_marginBottom="48dp"
 | 
						|
    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:id="@+id/tv_section_title"
 | 
						|
            android:layout_width="0dp"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_weight="1"
 | 
						|
            android:fontFamily="@font/pretendard_bold"
 | 
						|
            android:textColor="@color/white"
 | 
						|
            android:textSize="24sp" />
 | 
						|
 | 
						|
    </LinearLayout>
 | 
						|
 | 
						|
    <!-- 캐릭터 카드 리스트 -->
 | 
						|
    <androidx.recyclerview.widget.RecyclerView
 | 
						|
        android:id="@+id/rv_characters"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_marginTop="16dp"
 | 
						|
        android:clipToPadding="false"
 | 
						|
        android:paddingStart="24dp" />
 | 
						|
 | 
						|
</LinearLayout> |