- DB 마이그레이션으로 기존 알람 데이터 보존 - 연차 저장 문제 수정 (원래대로/연차 설정 시 updateRemainingAnnualLeave 호출) - 달력 5행 스크롤 없이 표시 (85dp 높이) - 알람 편집/월년 선택 다크모드 지원 - 설정 앱정보 버전 동기화 표시 Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
87 lines
3.3 KiB
XML
87 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView 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"
|
|
app:cardCornerRadius="32dp"
|
|
app:cardElevation="0dp"
|
|
app:cardBackgroundColor="@android:color/transparent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="32dp"
|
|
android:background="@drawable/bg_opaque_glass_dialog">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="날짜 이동"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/text_primary"
|
|
android:layout_marginBottom="32dp"
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center"
|
|
android:layout_marginBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal"
|
|
android:gravity="center">
|
|
|
|
<NumberPicker
|
|
android:id="@+id/yearPicker"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="180dp"
|
|
android:theme="@style/AppNumberPickerStyle"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="년"
|
|
android:textSize="18sp"
|
|
android:textColor="@color/text_secondary"
|
|
android:layout_marginStart="8dp"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="1.5dp"
|
|
android:layout_height="80dp"
|
|
android:background="#1A000000"
|
|
android:layout_marginHorizontal="20dp"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal"
|
|
android:gravity="center">
|
|
|
|
<NumberPicker
|
|
android:id="@+id/monthPicker"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="180dp"
|
|
android:theme="@style/AppNumberPickerStyle"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="월"
|
|
android:textSize="18sp"
|
|
android:textColor="@color/text_secondary"
|
|
android:layout_marginStart="8dp"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|