- 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.
15 lines
No EOL
606 B
XML
15 lines
No EOL
606 B
XML
<?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> |