pretendard_bold -> bold pretendard_regular -> regular pretendard_medium -> medium pretendard_light -> light
22 lines
791 B
XML
22 lines
791 B
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="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_day_of_week"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_selectable_day_of_week"
|
|
android:fontFamily="@font/regular"
|
|
android:gravity="center"
|
|
android:paddingHorizontal="10dp"
|
|
android:paddingVertical="6dp"
|
|
android:textColor="@color/white"
|
|
android:textSize="18sp"
|
|
tools:text="월" />
|
|
</LinearLayout>
|