version:1.1.5

update:
bugfixes:优化闹钟自动接听
This commit is contained in:
2024-08-19 10:30:50 +08:00
parent 9f8057cd33
commit 261016b9bd
103 changed files with 2478 additions and 781 deletions

View File

@@ -27,7 +27,10 @@
<color name="progress_bg">#F1B3B3</color>
<color name="actions_item_pressed">#2a2b35</color>
<color name="default_background_color">#8e6afb</color>
<color name="main_default_text_gray">#808080</color>
<color name="NormalCircleColor">#99FFFFFF</color>
<color name="SelectedCircleColor">#ffffff</color>
<color name="sos_text_color">#ff5257</color>
<color name="voice_color">#00D56B</color>
<color name="weathet_bg_color">#ffffff</color>
@@ -41,7 +44,7 @@
<color name="app_bg_color">#FDF6DC</color>
<color name="noti_color">#eae8e8</color>
<color name="noti_font_color">#bbbaba</color>
<color name="noti_font_color">#B5B5B5</color>
<color name="line_color">#182237</color>
<color name="title_gray">#858585</color>
<color name="title_red">#F44250</color>

View File

@@ -9,13 +9,21 @@
<item name="android:windowBackground">@color/colorPrimary</item>
</style>
<style name="AppThemeFitsSystem" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowBackground">@color/colorPrimary</item>
<item name="android:fitsSystemWindows">true</item>
</style>
<style name="AppWhiteTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/gray</item>
<item name="colorPrimaryDark">@color/gray</item>
<item name="colorAccent">@color/gray</item>
<item name="android:windowBackground">@color/gray</item>
<item name="android:fitsSystemWindows">true</item>
</style>
<style name="activity_styles" parent="Theme.AppCompat.Light.DarkActionBar">
@@ -40,6 +48,28 @@
<item name="android:windowCloseOnTouchOutside">true</item>
</style>
<style name="DialogStylesWithoutClose" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- <item name="android:windowFullscreen">true</item>-->
<!--设置dialog的背景-->
<item name="android:windowBackground">@android:color/transparent</item>
<!--设置Dialog的windowFrame框为无-->
<item name="android:windowFrame">@null</item>
<!--设置无标题-->
<item name="windowNoTitle">true</item>
<!--是否浮现在activity之上-->
<!--为false会导致windowCloseOnTouchOutside 失效-->
<item name="android:windowIsFloating">true</item>
<!--是否半透明-->
<item name="android:windowIsTranslucent">true</item>
<!--设置窗口内容不覆盖-->
<item name="android:windowContentOverlay">@null</item>
<!--设置动画在这里使用让它继承系统的Animation.Dialog-->
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
<!--背景是否模糊显示-->
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowCloseOnTouchOutside">false</item>
</style>
<style name="FloatingWindow" parent="Theme.AppCompat.NoActionBar">
<!--背景颜色及和透明程度-->
<item name="android:windowBackground">@android:color/transparent</item>