LobeChat-Android/app/src/main/res/values/themes.xml
moreoronce 236bb140f8 Add Functionality and Fix Issues in WebViewActivity
- Implemented draggable FloatingActionButton with click functionality.
- Resolved touch conflict between touch and click events on FloatingActionButton.
- Improved WebView reload logic and ensured UI components are not obstructed.
- Updated XML layouts for better constraint alignment and visual consistency.
- Enhanced logging for user actions on the refresh button.

Ensures a smoother user experience and UI operation.
2024-10-07 13:29:12 +08:00

15 lines
No EOL
606 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- 使主题继承自 Theme.AppCompat.DayNight.NoActionBar以获得系统默认的状态栏 -->
<style name="Theme.WebViewApp" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<item name="android:statusBarColor">
@color/purple_dark_9
</item>
<item name="android:navigationBarColor">
@color/design_default_color_background
</item>
<item name="android:windowTitleBackgroundStyle">
@color/design_default_color_background
</item>
</style>
</resources>