Files
PowerBell/contacts/src/main/res/layout/view_green_channel_floating.xml
T
MiMo f6bc48d5d2 feat: 添加绿色通道悬浮窗调试入口
- 新增 GreenChannelFloatingWindow 悬浮窗管理类,支持 API26+ 窗口类型适配
- 新增 view_green_channel_floating.xml 悬浮窗布局,LimitedTimeGreenChannelView 占满全屏无边距
- DebugToolButtonsView 调试工具按钮组添加绿色通道按钮,点击打开悬浮窗
2026-07-20 20:47:34 +08:00

16 lines
581 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ll_green_channel_floating"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:color/white"
android:elevation="4dp">
<cc.winboll.studio.contacts.views.LimitedTimeGreenChannelView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/view_LimitedTimeGreenChannel"/>
</LinearLayout>