【Android】创建一个可以一直显示但是又不影响用户页面操作的Dialog

需求

此Dialog作为通知类型的dialog,当某事件被触发的时候,显示此Dialog,在dialog显示的时候,用户仍然可以正常操作页面,点击事件等不会被此dialog拦截。

实现

首先创建一个布局文件:这个根据自己需求创建(代码省略)

文件命名为【layout_notification_always_show】

创建dialog

kotlin 复制代码
class NotificationAlwaysShow(private val mContext: Context)
    : INotificationDialog {

    private var mDialog: Dialog? = null
    private var mTopTitle = mContext.getString(R.string.notification_caution)
    private var mBottomMessage = mContext.getString(R.string.notification_caution_message)
    private var mImage = R.drawable.ic_back_up

    /**
     * 设置图片
     */
    fun setImage(res: Int): NotificationAlwaysShow {
        mImage = res
        return this
    }

    /**
     * 设置提示Title
     */
    fun setTitle(title: Int): NotificationAlwaysShow {
        mTopTitle = mContext.getString(title)
        return this
    }

    /**
     * 设置详细提示信息
     */
    fun setMessage(message: Int): NotificationAlwaysShow {
        mBottomMessage = mContext.getString(message)
        return this
    }

    override fun show() {
        mDialog = Dialog(mContext)
        mDialog?.setContentView(R.layout.layout_notification_always_show)
        mDialog?.setCancelable(false)
        mDialog?.setCanceledOnTouchOutside(false)

        val window = mDialog?.window
        val layoutParams = window?.attributes
        layoutParams?.gravity = Gravity.TOP
        //通过设置Flag来实现我们的需求
        layoutParams?.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE or
                WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL or
                WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
        layoutParams?.y = mContext.resources.getDimensionPixelSize(R.dimen.notification_top_width)
        window?.attributes = layoutParams
        window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
        window?.setDimAmount(0f)
        window?.setWindowAnimations(R.style.Notification_dialog_animation)

        val ivImage = mDialog?.findViewById<ImageView>(R.id.iv_iamge_always_show)
        val textTitle = mDialog?.findViewById<TextView>(R.id.tv_title_always_show)
        val textMessage = mDialog?.findViewById<TextView>(R.id.tv_message_always_show)

        ivImage?.setImageResource(mImage)
        textTitle?.text = mTopTitle
        textMessage?.text = mBottomMessage

        // 设置按键监听器,拦截返回键事件
//        mDialog?.setOnKeyListener(object : DialogInterface.OnKeyListener {
//            override fun onKey(dialog: DialogInterface?, keyCode: Int, event: KeyEvent?): Boolean {
//                if (keyCode == KeyEvent.KEYCODE_BACK && event?.action == KeyEvent.ACTION_UP) {
//                    return true
//                }
//                return false
//            }
//        })

        mDialog?.show()
    }

    override fun dismiss() {
        mDialog?.dismiss()
    }

    override fun showing(): Boolean {
        return mDialog?.isShowing == true
    }

}
相关推荐
mjhcsp39 分钟前
C++ 三分查找:在单调与凸函数中高效定位极值的算法
开发语言·c++·算法
小王码农记39 分钟前
vue2中实现天气预报
前端·javascript·vue.js·echarts
我命由我1234543 分钟前
Element Plus 组件库 - Select 选择器 value 为 index 时的一些问题
开发语言·前端·javascript·vue.js·html·ecmascript·js
沐知全栈开发43 分钟前
MySQL 删除数据库指南
开发语言
qq. 28040339842 小时前
js 原型链分析
开发语言·javascript·ecmascript
Elnaij2 小时前
从C++开始的编程生活(13)——list和浅谈stack、queue
开发语言·c++
格鸰爱童话2 小时前
next.js(二)——从react到next.js
前端·javascript·react.js
Hammer Ray5 小时前
SourceMap知识点
javascript·sourcemap
一晌小贪欢6 小时前
【Python数据分析】数据分析与可视化
开发语言·python·数据分析·数据可视化·数据清洗
草莓火锅8 小时前
用c++使输入的数字各个位上数字反转得到一个新数
开发语言·c++·算法