Android可移动的悬浮窗

news/2024/11/18 3:18:42/

1.悬浮窗权限申请:

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {if (!Settings.canDrawOverlays(getApplicationContext())) {Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION);startActivityForResult(intent, 100);} else {/*需要启动的service*/mIntent = new Intent(MainActivity.this, FloatWindowService.class);bindService(mIntent, serviceConnection, Context.BIND_AUTO_CREATE);//直接启动服务方式启动}
}private ServiceConnection serviceConnection = new ServiceConnection() {@Overridepublic void onServiceConnected(ComponentName name, IBinder service) {}@Overridepublic void onServiceDisconnected(ComponentName name) {}
};在Activity回调申请权限的结果:
@Override
public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data){super.onActivityResult(requestCode, resultCode, data);if (requestCode == 100) {if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {if (Settings.canDrawOverlays(this)) {Intent mIntent = new Intent(MainActivity.this,FloatWindowService.class);startService(mIntent);//直接启动服务方式启动}}}

2.创建悬浮窗:

WindowManager windowManager = (WindowManager) mContext.getSystemService(WINDOW_SERVICE);
// 设置LayoutParam
WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {layoutParams.type = WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY;
} else {layoutParams.type = WindowManager.LayoutParams.TYPE_PHONE;
}
layoutParams.format = PixelFormat.RGBA_8888;
layoutParams.flags = WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
//宽高自适应
layoutParams.width = WindowManager.LayoutParams.WRAP_CONTENT;
layoutParams.height = WindowManager.LayoutParams.WRAP_CONTENT;layoutParams.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR; //竖屏
layoutParams.gravity = Gravity.START | Gravity.TOP;//显示的位置
layoutParams.x = ScreenManager.dipToPx(mContext, 14);
layoutParams.y = ScreenManager.dipToPx(mContext, 97);
View floatView = LayoutInflater.from(mContext).inflate(R.layout.window_float_view, null);

xml内部布局

<LinearLayoutandroid:id="@+id/layout_voice_broadcast"android:layout_width="100dp"android:layout_height="40dp"
android:background="@color/color_FF198CFF"
android:orientation="horizontal"tools:ignore="UselessLeaf,UselessParent"></LinearLayout>

xml颜色 

<color name="color_FF198CFF">#FF198CFF</color>

/*** 根据手机的分辨率从 dip 的单位 转成为 px(像素)*/
public static int dipToPx(Context context, float dpValue) {final float scale = context.getResources().getDisplayMetrics().density;return (int) (dpValue * scale + 0.5f);
}

3.设置滑动监听:

floatView.setOnTouchListener(new FloatingOnTouchListener());
private class FloatingOnTouchListener implements View.OnTouchListener {private intmTouchStartX,mTouchStartY,mTouchCurrentX,mTouchCurrentY,mMoveX,mMoveY;@SuppressLint("ClickableViewAccessibility")@Overridepublic boolean onTouch(View view, MotionEvent event) {if (event.getAction() == MotionEvent.ACTION_DOWN) {mTouchStartX = (int) event.getRawX();mTouchStartY = (int) event.getRawY();mMoveX = 0;mMoveY = 0;} else if (event.getAction() == MotionEvent.ACTION_MOVE) {mTouchCurrentX = (int) event.getRawX();mTouchCurrentY = (int) event.getRawY();mMoveX = mTouchCurrentX - mTouchStartX;mMoveY = mTouchCurrentY - mTouchStartY;mTouchStartX = mTouchCurrentX;mTouchStartY = mTouchCurrentY;layoutParams.x += mMoveX;layoutParams.y += mMoveY;windowManager.updateViewLayout(floatView, layoutParams);} else if (event.getAction() == MotionEvent.ACTION_UP) {windowManager.updateViewLayout(floatView, layoutParams);}return false;}
}
/*** 根据手机的分辨率从 dip 的单位 转成为 px(像素)*/
public static int dipTopx(Context context, float dpValue) {final float scale = context.getResources().getDisplayMetrics().density;return (int) (dpValue * scale + 0.5f);
}

如对此有疑问,请联系qq1164688204。

推荐Android开源项目

项目功能介绍:RxJava2和Retrofit2项目,添加自动管理token功能,添加RxJava2生命周期管理,使用App架构设计是MVP模式和MVVM模式,同时使用组件化,部分代码使用Kotlin,此项目持续维护中。

项目地址:https://gitee.com/urasaki/RxJava2AndRetrofit2


http://www.ppmy.cn/news/774563.html

相关文章

如何在html添加悬浮页面,如何设置悬浮窗口?

可以用FlashMX来制作&#xff0c;下面是教程 用FlashMX制作拖动悬浮窗口 在课件制作过程中&#xff0c;有些需要重点突出的知识点要在单独的画面中显示&#xff0c;并且要求可以拖动。这就是我们平时所说的可以拖动的悬浮窗口。笔者以Flash MX为课件制作平台&#xff0c;将实现…

Mac OS 悬浮窗口,并且可以保持在全屏的其他应用上。

最简单的一个方法NSPanel项目下载地址 #import <Cocoa/Cocoa.h>NS_ASSUME_NONNULL_BEGINinterface myWindow : NSPanelendNS_ASSUME_NONNULL_END #import "myWindow.h"implementation myWindow- (instancetype)initWithContentRect:(NSRect)contentRectstyle…

iOS关于悬浮窗口的实现

由于项目的需要&#xff0c;需要实现的一个悬浮窗口 &#xff0c;显示在整个应用界面。 思路一 另创建一个类 继承 uiwindow 设置成为 alter &#xff0c;使用 makeKeyAndVisible 显示在界面上&#xff0c; 这种方法效果在竖屏上面效果很好&#xff0c;开始的时候感觉 很不错…

ios添加全局悬浮按钮_iOS全局的悬浮窗

1.这个悬浮窗的持有者应该是比较稳定的&#xff0c;一般写在AppDelegate里面&#xff0c;KDEAISellFloatWindow继承于UIWindow&#xff0c; 关于UIWindow&#xff0c;为了保证始终悬浮在最上层&#xff0c;可以给windowLevel 设置成UIWindowLevelAlert UIWindowLevelAlert >…

IOS 应用悬浮窗

需求 在一个app应用的最顶部添加一个悬浮窗&#xff0c;就像ios系统AssistiveTouch 可以左右滑动&#xff0c;但是最终会停在左边或右边。 实现思路 在应用的视图的最顶层添加一个UIWindow&#xff0c;用这个UIWindow 充当悬浮窗&#xff0c;给UIWindow添加移动的手势监听&a…

android仿苹果悬浮窗(自动停靠、随手指滑动、返回主屏幕)

说明&#xff1a;本人写博客一来是为了方便日后查看项目&#xff0c;二来是希望能够和广大的程序猿相互交流学习&#xff0c;文章布局简单&#xff0c;如有嫌弃&#xff0c;请绕行&#xff0c;如有错误&#xff0c;请指出&#xff0c;谢谢。 实验环境&#xff1a;安卓6.0 魅族…

苹果悬浮球_买了一万块钱的苹果手机,悬浮球功能不会用?真的可惜了

苹果手机悬浮球就是大家俗称的"小白点"功能&#xff0c;虽然说现在是全面屏时代&#xff0c;大多数人都习惯了虚拟按键进行操作。也有很多快捷键功能。 但是iPhone手机小白点作为苹果手机经典功能之一&#xff0c;很多快捷功能非常实用&#xff0c;今天就来教教大家怎…

nginx七层代理和四层转发的理解

先来理解一下osi七层模型 应用层 应用层是ISO七层模型的最高层&#xff0c;它直接与用户和应用程序交互&#xff0c;提供用户与网络的接口。它包括各种应用协议&#xff0c;如HTTP、FTP、SMTP等&#xff0c;用于实现特定应用的功能和通信表示层 表示层…