mirror of
https://gitea.winboll.cc/ZhanGSKen/MyWinBoLL.git
synced 2026-08-14 05:27:11 +08:00
f6bc48d5d2
- 新增 GreenChannelFloatingWindow 悬浮窗管理类,支持 API26+ 窗口类型适配 - 新增 view_green_channel_floating.xml 悬浮窗布局,LimitedTimeGreenChannelView 占满全屏无边距 - DebugToolButtonsView 调试工具按钮组添加绿色通道按钮,点击打开悬浮窗
16 lines
581 B
XML
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>
|