Android WindowManager工具类

2024-03-31 19:52

本文主要是介绍Android WindowManager工具类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

WindowManager提供三个方法: addView()、updateLayout()、removeView()。分别对应是添加view、更新view、移除view。

    <!--悬浮窗权限--><uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

WindowManagerUtil 

package cn.jzvd.demo.utils;import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.PixelFormat;
import android.hardware.display.DisplayManager;
import android.text.TextUtils;
import android.util.DisplayMetrics;
import android.view.Display;
import android.view.Gravity;
import android.view.View;
import android.view.WindowManager;import java.util.ArrayList;
import java.util.Collection;
import java.util.List;/*** 注意申请悬浮窗权限*/
public class WindowManagerUtil {private final String TAG = "GuiViewManager";private final List<WindowBean> mWindowBeans = new ArrayList<>();private static volatile GuiViewManager mInstance = null;private WindowBean mPreWindowBean;private Context mContext = null;private int mType = WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY;public void init(Context context) {mContext = context;createWindowManager();}public void setWindowType(int windowType) {mType = windowType;}private WindowManagerUtil() {}public static WindowManagerUtil getInstance() {if (mInstance == null) {synchronized (WindowManagerUtil.class) {if (mInstance == null) {mInstance = new WindowManagerUtil();}}}return mInstance;}/*** 获取WindowManager** @return*/private void createWindowManager() {try {Display[] displays = ((DisplayManager) mContext.getSystemService(Context.DISPLAY_SERVICE)).getDisplays();LogUtil.d(TAG,"displays.length " + displays.length);//displays.length<2说明只有一个屏幕if (null != displays) {for (Display display : displays) {Context context = mContext.createDisplayContext(display);WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);DisplayMetrics outMetrics = new DisplayMetrics();windowManager.getDefaultDisplay().getMetrics(outMetrics);WindowManager.LayoutParams lp = new WindowManager.LayoutParams();lp.type = mType;lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN| WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE| WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS| WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;//lp.width = WindowManager.LayoutParams.MATCH_PARENT;//lp.height = WindowManager.LayoutParams.MATCH_PARENT;lp.format = PixelFormat.TRANSPARENT;//将alpha设置为最大遮挡不透明度//lp.alpha = 0.8f;lp.gravity = Gravity.TOP | Gravity.START;mWindowBeans.add(new WindowBean(display.getDisplayId(), windowManager, lp));}}} catch (Exception e) {LogUtil.e(TAG,"createWindowManager  error " + e);}}/*** 获取状态栏高度** @return*/private int getStatusBarHeight() {int statusBarHeight = -1;//获取status_bar_height资源的ID@SuppressLint("InternalInsetResource")int resourceId = mContext.getResources().getIdentifier("status_bar_height", "dimen", "android");if (resourceId > 0) {//根据资源ID获取响应的尺寸值statusBarHeight = mContext.getResources().getDimensionPixelSize(resourceId);}return statusBarHeight;}public void show(View view, int width, int height, int startX, int startY) {//目前不考虑两个屏幕,在只有一个屏幕的情况下,displayId为0show(0, view, width, height, startX, startY);}public void show(int displayId, View view, int width, int height, int startX, int startY) {LogUtil.d(TAG, "show width " + width +" height " +height + " startX " + startX +" startY " +startY );try {WindowBean windowBean = getWindowBean(displayId);if (windowBean != null) {WindowManager windowManager = windowBean.getWindowManager();WindowManager.LayoutParams lp = windowBean.getLp();if (windowManager != null && lp != null) {dismiss();lp.x = startX;lp.y = startY;lp.width = width;lp.height = height;lp.type = mType;windowManager.addView(view, lp);windowBean.setView(view);mPreWindowBean = windowBean;}}} catch (Exception e) {LogUtil.e(TAG, "show error ", e);}}public void dismiss() {if (mPreWindowBean != null) {WindowManager windowManager = mPreWindowBean.getWindowManager();View view = mPreWindowBean.getView();if (windowManager != null && view != null) {windowManager.removeView(view);}mPreWindowBean = null;}}public WindowBean getWindowBean(int displayId) {if (isEmptyArray(mWindowBeans)) {createWindowManager();}for (WindowBean windowBean : mWindowBeans) {if (displayId == windowBean.getDisplayId()) {return windowBean;}}return null;}private boolean isEmptyArray(Collection list) {return list == null || list.isEmpty();}public void destroy() {mWindowBeans.clear();mContext = null;}
}

WindowBean 

public class WindowBean {private int displayId;private WindowManager windowManager;private WindowManager.LayoutParams lp;private View view;public WindowBean(int displayId, WindowManager windowManager, WindowManager.LayoutParams lp) {this.displayId = displayId;this.windowManager = windowManager;this.lp = lp;}public int getDisplayId() {return this.displayId;}public WindowManager getWindowManager() {return this.windowManager;}public WindowManager.LayoutParams getLp() {return this.lp;}public View getView() {return this.view;}public void setView(View view) {this.view = view;}
}

其他工具类大家搜索一个就可以了。

推荐几个:

浮窗中addView()不显示 分析思路_android windowmanager addview后窗口不显示-CSDN博客

这篇关于Android WindowManager工具类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/865194

相关文章

基于Python开发电脑定时关机工具

《基于Python开发电脑定时关机工具》这篇文章主要为大家详细介绍了如何基于Python开发一个电脑定时关机工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 简介2. 运行效果3. 相关源码1. 简介这个程序就像一个“忠实的管家”,帮你按时关掉电脑,而且全程不需要你多做

基于C#实现PDF文件合并工具

《基于C#实现PDF文件合并工具》这篇文章主要为大家详细介绍了如何基于C#实现一个简单的PDF文件合并工具,文中的示例代码简洁易懂,有需要的小伙伴可以跟随小编一起学习一下... 界面主要用于发票PDF文件的合并。经常出差要报销的很有用。代码using System;using System.Col

redis-cli命令行工具的使用小结

《redis-cli命令行工具的使用小结》redis-cli是Redis的命令行客户端,支持多种参数用于连接、操作和管理Redis数据库,本文给大家介绍redis-cli命令行工具的使用小结,感兴趣的... 目录基本连接参数基本连接方式连接远程服务器带密码连接操作与格式参数-r参数重复执行命令-i参数指定命

Python pyinstaller实现图形化打包工具

《Pythonpyinstaller实现图形化打包工具》:本文主要介绍一个使用PythonPYQT5制作的关于pyinstaller打包工具,代替传统的cmd黑窗口模式打包页面,实现更快捷方便的... 目录1.简介2.运行效果3.相关源码1.简介一个使用python PYQT5制作的关于pyinstall

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

使用Python制作一个PDF批量加密工具

《使用Python制作一个PDF批量加密工具》PDF批量加密‌是一种保护PDF文件安全性的方法,通过为多个PDF文件设置相同的密码,防止未经授权的用户访问这些文件,下面我们来看看如何使用Python制... 目录1.简介2.运行效果3.相关源码1.简介一个python写的PDF批量加密工具。PDF批量加密

使用Java编写一个文件批量重命名工具

《使用Java编写一个文件批量重命名工具》这篇文章主要为大家详细介绍了如何使用Java编写一个文件批量重命名工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录背景处理1. 文件夹检查与遍历2. 批量重命名3. 输出配置代码片段完整代码背景在开发移动应用时,UI设计通常会提供不

Android WebView的加载超时处理方案

《AndroidWebView的加载超时处理方案》在Android开发中,WebView是一个常用的组件,用于在应用中嵌入网页,然而,当网络状况不佳或页面加载过慢时,用户可能会遇到加载超时的问题,本... 目录引言一、WebView加载超时的原因二、加载超时处理方案1. 使用Handler和Timer进行超

Python按条件批量删除TXT文件行工具

《Python按条件批量删除TXT文件行工具》这篇文章主要为大家详细介绍了Python如何实现按条件批量删除TXT文件中行的工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1.简介2.运行效果3.相关源码1.简介一个由python编写android的可根据TXT文件按条件批

详解Python中通用工具类与异常处理

《详解Python中通用工具类与异常处理》在Python开发中,编写可重用的工具类和通用的异常处理机制是提高代码质量和开发效率的关键,本文将介绍如何将特定的异常类改写为更通用的ValidationEx... 目录1. 通用异常类:ValidationException2. 通用工具类:Utils3. 示例文