allez
2021-03-18 b09a15acd68ac1257f466b46e96d9132b6a0f85d
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>