添加任务开始时间条件设置功能

This commit is contained in:
ZhanGSKen
2025-10-22 05:36:36 +08:00
parent 6a90bbb263
commit bcd4fc5abd
18 changed files with 895 additions and 191 deletions

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<!-- 透明背景 -->
<solid android:color="#00000000" />
<!-- 灰色边框(与取消按钮文字同色) -->
<stroke
android:width="1dp"
android:color="#FF333333" />
<!-- 圆角与弹窗一致12dp -->
<corners android:radius="12dp" />
</shape>