<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_height=
"match_parent"
android:layout_width=
"match_parent"
android:background=
"@color/transparentForBackground"
>
<LinearLayout
app:layout_behavior=
"com.google.android.material.bottomsheet.BottomSheetBehavior"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
android:background=
"@color/whiteForBackground"
android:paddingHorizontal=
"16dp"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"4dp"
android:orientation=
"horizontal"
android:gravity=
"center"
android:weightSum=
"1"
android:layout_marginVertical=
"8dp"
>
<View
android:layout_width=
"0dp"
android:layout_height=
"match_parent"
android:layout_weight=
"0.13"
android:background=
"@drawable/modal_line"
/>
</LinearLayout>
<RelativeLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:paddingVertical=
"8dp"
>
<androidx.appcompat.widget.AppCompatImageView
android:id=
"@+id/on_store_btn_close"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:padding=
"4dp"
android:layout_alignTop=
"@id/on_store_title"
android:layout_alignBottom=
"@id/on_store_title"
android:layout_alignParentStart=
"true"
android:adjustViewBounds=
"true"
android:src=
"@drawable/close_btn_img_black"
android:scaleType=
"centerInside"
android:tint=
"@color/black"
/>
<TextView
android:id=
"@+id/on_store_title"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_centerInParent=
"true"
android:text=
"목록에 저장하기"
android:textSize=
"14sp"
android:textColor=
"@color/black"
/>
</RelativeLayout>
<View
android:layout_width=
"match_parent"
android:layout_height=
"1dp"
android:layout_marginTop=
"16dp"
android:background=
"@drawable/modal_line"
android:layout_marginBottom=
"24dp"
/>
<androidx.recyclerview.widget.RecyclerView
android:id=
"@+id/on_store_recycler_view"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:clipToPadding=
"false"
tools:listitem=
"@layout/recycler_view_on_store_item"
/>
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>