version:3.5

fix:
update:优化退出,增加闹钟
This commit is contained in:
2023-05-29 10:21:55 +08:00
parent 2a0fa9f4dc
commit 3e440de562
124 changed files with 6897 additions and 1266 deletions

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="@dimen/dp_120"
android:layout_height="wrap_content"
android:background="@color/gray"
android:orientation="vertical">
<TextView
android:id="@+id/tv_menuOne"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="@dimen/dp_10"
android:text="只响一次"
android:textColor="@color/black"
android:textSize="@dimen/sp_12" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/white" />
<TextView
android:id="@+id/tv_menuTwo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="@dimen/dp_10"
android:text="每天"
android:textColor="@color/black"
android:textSize="@dimen/sp_12" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/white" />
<TextView
android:id="@+id/tv_menuThree"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="@dimen/dp_10"
android:text="周一至周五"
android:textColor="@color/black"
android:textSize="@dimen/sp_12" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/white" />
<TextView
android:id="@+id/tv_menuFour"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="@dimen/dp_10"
android:text="周六至周日"
android:textColor="@color/black"
android:textSize="@dimen/sp_12" />
</LinearLayout>
</FrameLayout>