Android设置悬浮窗按钮,图片有多余的白色背景
Posted 木头小颖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android设置悬浮窗按钮,图片有多余的白色背景相关的知识,希望对你有一定的参考价值。
android设置系统悬浮窗简单的操作就是:
1.设置悬浮窗显示的样式(用LayoutInflater实例化layout布局)
2.设置该样式在Window中的显示样式(即 WindowManager.LayoutParams)
3.通过WindowManager将layout按所选择样式添加到系统view中(即WindowManager.addView(layout, params))
代码如下:
val winManager = application.getSystemService(Context.WINDOW_SERVICE) as WindowManager
//1.得到容器,通过这个inflater来获得悬浮窗控件
inflater = LayoutInflater.from(applicationContext)
// 获取浮动窗口视图所在布局
mFloatingLayout = inflater!!.inflate(R.layout.layout_float, null)
//2.设置LayoutParams属性
val wmParams = WindowManager.LayoutParams()
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
wmParams!!.type = WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY
else
wmParams!!.type = WindowManager.LayoutParams.TYPE_PHONE
wmParams!!.flags =
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE or WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL or
WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN or WindowManager.LayoutParams.FLAG_LAYOUT_INSET_DECOR or
WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH
wmParams!!.width = WindowManager.LayoutParams.WRAP_CONTENT
wmParams!!.height = WindowManager.LayoutParams.WRAP_CONTENT
// 悬浮窗默认显示以左上角为起始坐标
wmParams!!.gravity = Gravity.LEFT or Gravity.TOP
//悬浮窗的开始位置,因为设置的是从左上角开始,所以屏幕左上角是x=0;y=0
wmParams!!.x = winManager!!.defaultDisplay.width
wmParams!!.y = 100
//3.添加到view中
winManager!!.addView(mFloatingLayout, wmParams)
注:此时最终显示的悬浮窗图标可能有白色或者黑色背景,那么仍需要将该view的背景设置透明色
添加如下代码即可:
wmParams!!.format = PixelFormat.TRANSPARENT
以上是关于Android设置悬浮窗按钮,图片有多余的白色背景的主要内容,如果未能解决你的问题,请参考以下文章