113 lines
4.2 KiB
XML
113 lines
4.2 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:background="@color/black"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="13.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:textColor="@color/color_909090"
|
|
android:textSize="12sp"
|
|
tools:text="모닝콜" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="13.3dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_ampm"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:textColor="@color/color_d2d2d2"
|
|
android:textSize="14sp"
|
|
tools:text="오전" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="5.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="28sp"
|
|
tools:text="10:00" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_days"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_toStartOf="@+id/iv_enable"
|
|
android:layout_toEndOf="@+id/ll_time"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="end"
|
|
android:text="월, 수, 금"
|
|
android:textColor="@color/color_909090"
|
|
android:textSize="11sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_enable"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:contentDescription="@null"
|
|
android:src="@drawable/btn_toggle_on_big" />
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginVertical="13.3dp"
|
|
android:background="@drawable/bg_round_corner_5_3_222222"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="13.3dp"
|
|
android:paddingVertical="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_creator_nickname"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:textColor="@color/color_909090"
|
|
android:textSize="12sp"
|
|
tools:text="설린" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_content_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16.7dp"
|
|
android:ellipsize="end"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:maxLines="1"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="14.7sp"
|
|
tools:text="[야함끝판왕/리얼플🔞] 강제로 절정까지 가버리는 연상녀💦" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/color_555555" />
|
|
</LinearLayout>
|