version:1.6.1

fix:休息日管控完善
add:
This commit is contained in:
2021-09-02 18:29:04 +08:00
parent 93b0e35af7
commit 0fa06f8f2a
135 changed files with 10134 additions and 4595 deletions

View File

@@ -9,4 +9,10 @@
<color name="gray">#80808080</color>
<color name="lightgrey">#D3D3D3</color>
<color name="toast_color">#CD000000</color>
<color name="check_activation_color">#D3D3D3</color>
<color name="activation_color">#4880ff</color>
<color name="float_window_color">#E5000000</color>
</resources>

View File

@@ -9,4 +9,7 @@
<string name="setting">设置</string>
<string name="cancel">取消</string>
<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragment</string>
</resources>

View File

@@ -7,7 +7,7 @@
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="CustomDialog" parent="android:style/Theme.Dialog">
<style name="CustomDialog" parent="Theme.AppCompat.Dialog.Alert">
<!--背景颜色及和透明程度-->
<item name="android:windowBackground">@android:color/transparent</item>
<!--是否去除标题 -->
@@ -20,4 +20,18 @@
<item name="android:backgroundDimEnabled">true</item>
</style>
<style name="UserDebugDialog" parent="Theme.AppCompat.Dialog.Alert">
<!--背景颜色及和透明程度-->
<item name="android:windowBackground">@android:color/transparent</item>
<!--是否去除标题 -->
<item name="android:windowNoTitle">true</item>
<!--是否去除边框-->
<item name="android:windowFrame">@null</item>
<!--是否浮现在activity之上-->
<item name="android:windowIsFloating">true</item>
<!--是否模糊-->
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowSoftInputMode">stateVisible|adjustPan</item>
</style>
</resources>