功能特性: - 玻璃态/新拟态设计风格的现代UI - 侧边栏导航(控制台、最近、收藏、下载、支持、设置) - 房间管理:可添加、删除房间,支持横向滚动 - 长按房间标签进入编辑模式,带旋转晃动动画 - 三个场景模式按钮(回家、出门、玩乐) - 空调控制卡片 - 使用状态图表 - 灯光控制 - 设备网格展示 - 设置页面(账户、设备管理、显示设置、关于) - 使用SharedPreferences持久化存储房间列表 - 响应式设计,支持多种屏幕尺寸
28 lines
999 B
XML
28 lines
999 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/bg_radial_overlay"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<eightbitlab.com.blurview.BlurTarget
|
|
android:id="@+id/blurTarget"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.compose.ui.platform.ComposeView
|
|
android:id="@+id/composeView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</eightbitlab.com.blurview.BlurTarget>
|
|
|
|
<eightbitlab.com.blurview.BlurView
|
|
android:id="@+id/blurView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top"
|
|
app:blurOverlayColor="@color/glassOverlay" />
|
|
|
|
</FrameLayout>
|