Dialog 设置透明背景(去掉蒙层)状态栏颜色不改变

本文介绍了如何在Android中设置Dialog为透明背景,同时避免弹出时状态栏颜色改变。通过设置Window属性,包括将背景设为透明、dim amount设为0以及清除FLAG_DIM_BEHIND标志,可以实现透明Dialog并保持状态栏颜色不变的效果。代码示例展示了具体实现步骤。
摘要由CSDN通过智能技术生成

Dialog 设置透明背景(去掉蒙层)状态栏颜色不改变

Dialog设置透明背景(去掉蒙层)

//背景全透明
window!!.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
window!!.setDimAmount(0f)
            

Dialog弹出时状态栏颜色不改变

//弹出时状态栏颜色不改变  
window!!.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND)

原因:
正常情况下,Dialog弹出时背景有灰色蒙层,此时状态栏的颜色变为亮色,这是由于设置了addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND)

所以如果需要状态栏不因Dialog弹出而改变,即需要
clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND)

完整代码

	override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.dialog_store_detail)
        if (window != null) {
            window!!.setGravity(Gravity.BOTTOM)
            val lp = window!!.attributes
            lp.width = WindowManager.LayoutParams.MATCH_PARENT
            lp.height = WindowManager.LayoutParams.WRAP_CONTENT
            window!!.attributes = lp
            window!!.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
            //背景全透明
            window!!.setDimAmount(0f)
            //弹出时状态栏颜色不改变
            window!!.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND)
        }
		...
    }

写在最后

此文章为个人开发时记录,有时时间有限,无法深入研究,若看到此文章后有其他见解或解决方式,欢迎留言交流👇👇👇

————————————————
版权声明:转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_44158429/article/details/125779566

设置dialog背景透明并移除蒙层,通常是在Android或iOS应用中创建定制的对话框视图时进行的。以下是基本步骤: 1. **使用XML布局** (Android): 在XML布局文件中,你可以使用`android:background="@android:color/transparent"` 或 `android:elevation="0dp"` 来指定背景透明,同时设置`android:windowIsTranslucent="true"` 来去掉系统默认的对话框蒙层。 ```xml <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" android:windowIsTranslucent="true" android:background="@android:color/transparent" ...> <!-- Your view here --> </androidx.constraintlayout.widget.ConstraintLayout> ``` 2. **代码动态设置** (Android): 如果你在代码中创建dialog,可以使用`getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT))`来设置背景,并处理相应的透明效果。 3. **View的显示**: 确保dialog内的view(例如TextView、ImageView等)拥有足够的前景色,比如白色或者深色的文字,以便于在透明背景下清晰显示。 4. **iOS** (Swift or Objective-C): 使用UINavigationController的present方法时,传递一个自定义的UIViewController,设置其view的backgroundColor为clearColor或者设置view的alpha为0。 ```swift let transparentViewController = UIViewController() transparentViewController.view.backgroundColor = .clear // present the view controller without a translucent modal presentation style present(transparentViewController, animated: true, completion: nil) ``` 记得在实际应用中适配各种设备和操作系统的行为差异。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值