69 lines
2.5 KiB
XML
69 lines
2.5 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="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/toolbar"
|
|
layout="@layout/detail_toolbar" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_calendar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:clipToPadding="false"
|
|
android:paddingHorizontal="15.3dp" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="16.7dp"
|
|
android:background="@color/color_88909090" />
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
android:id="@+id/swipe_refresh_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_counselor"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:padding="13.3dp" />
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_no_items"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="28.3dp"
|
|
android:background="@drawable/bg_round_corner_4_7_13181b"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="16.7dp"
|
|
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:fontFamily="@font/pretendard_medium"
|
|
android:gravity="center"
|
|
android:lineSpacingExtra="8dp"
|
|
android:text="@string/screen_live_reservation_all_empty_message"
|
|
android:textColor="@color/color_bbbbbb"
|
|
android:textSize="13sp"
|
|
tools:ignore="SmallSp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|