Files
sodalive-android/app/src/main/res/layout/activity_alarm.xml
2024-07-25 16:10:38 +09:00

48 lines
1.7 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:background="@drawable/gradient_alarm"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/tv_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@android:color/white"
android:textSize="53sp"
tools:text="6:10" />
<TextView
android:id="@+id/tv_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="19dp"
android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@android:color/white"
android:textSize="14.7sp"
tools:text="7월 25일" />
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="19dp"
android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@android:color/white"
android:textSize="14.7sp"
tools:text="라이브 방송 알람" />
<ImageView
android:id="@+id/iv_stop_alarm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="189dp"
android:contentDescription="@null"
android:gravity="center"
android:src="@drawable/ic_alarm_stop" />
</LinearLayout>