54 lines
1.9 KiB
XML
Executable File
54 lines
1.9 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:background="@drawable/bg_group_header"
|
|
android:paddingHorizontal="16dp"
|
|
android:paddingVertical="10dp"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:clickable="true"
|
|
android:focusable="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/ivExpand"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:src="@drawable/ic_plus_circle"
|
|
android:rotation="45"
|
|
app:tint="@color/text_secondary"
|
|
android:layout_marginEnd="8dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvGroupName"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="주간 알람"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/text_primary"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvAlarmCount"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="2개 알람"
|
|
android:textSize="12sp"
|
|
android:textColor="@color/text_secondary"
|
|
android:background="@drawable/bg_glass_pill_v4"
|
|
android:paddingHorizontal="8dp"
|
|
android:paddingVertical="3dp"
|
|
android:layout_marginEnd="12dp"/>
|
|
|
|
<com.google.android.material.materialswitch.MaterialSwitch
|
|
android:id="@+id/groupSwitch"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:thumbTint="@color/white"
|
|
app:trackTint="@color/sl_switch_track"/>
|
|
</LinearLayout>
|