hch
2024-09-11 be24a6acd6abf8d86ab3b25d8be6d80f49f3dce3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<resources>
 
    <style name="edit_dialog" parent="android:style/Theme.Dialog">
        <item name="android:windowFrame">@null</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowBackground">@drawable/sp_dialog_bg_white</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowIsTranslucent">false</item>
        <!--半透明-->
        <item name="android:backgroundDimEnabled">true</item>
        <!--模糊-->
        <item name="android:backgroundDimAmount">0.6</item>
    </style>
 
</resources>