android 半透明弹窗

Posted 影响力

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 半透明弹窗相关的知识,希望对你有一定的参考价值。

  <style name="edit_AlertDialog_style" parent="@android:style/Theme.Dialog">
        <!--浮动-->
        <item name="android:windowIsFloating">true</item>
        <!--半透明-->
        <item name="android:windowIsTranslucent">true</item>
        <!--无标题-->
        <item name="android:windowNoTitle">true</item>
        <!--系统背景颜色-->
        <item name="android:windowBackground">@android:color/transparent</item>
        <!--当前背景颜色-->
        <item name="android:background">@android:color/transparent</item>
        <!--对话框背景色-->
        <item name="android:backgroundDimEnabled">true</item>
    </style>

 

以上是关于android 半透明弹窗的主要内容,如果未能解决你的问题,请参考以下文章

Android自定义半透明背景弹窗非popwindow/dialog超简单任意编写!

Android自定义半透明背景弹窗非popwindow/dialog超简单任意编写!

Kivy:为啥弹窗是半透明的?

在android活动中设置片段的形状和透明度

jquery dialog 怎样半透明

Android半透明+RGB颜色代码大全