小米手机8.0以上悬浮窗开启失败原因

1、需在AndroidManifest中添加权限

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

2、需在代码中查询是否开启权限

if(Build.VERSION.SDK_INT>=23)
        {
            if(Settings.canDrawOverlays(this))
            {
                //有悬浮窗权限开启服务绑定 绑定权限
                addView();

            }else{
                //没有悬浮窗权限m,去开启悬浮窗权限
                try{
                    Intent intent=new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION);
                    startActivityForResult(intent, OVERLAY_PERMISSION_REQ_CODE);
                }catch (Exception e)
                {
                    e.printStackTrace();
                }

            }
        } else{
            //默认有悬浮窗权限
            addView();
        }

3、LayoutParams中的type参数需这样设置

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            layoutParams.type = WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY;
        } else {
            layoutParams.type = WindowManager.LayoutParams.TYPE_PHONE;
        }

 

好的,您可以参考下面的代码实现: 1. 在 AndroidManifest.xml 文件中添加悬浮窗权限: ```xml <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> ``` 2. 创建一个悬浮窗 Service: ```java public class FloatWindowService extends Service { private WindowManager mWindowManager; private WindowManager.LayoutParams mLayoutParams; private View mFloatView; @Override public void onCreate() { super.onCreate(); mWindowManager = (WindowManager) getSystemService(WINDOW_SERVICE); mLayoutParams = new WindowManager.LayoutParams(); mLayoutParams.type = WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY; mLayoutParams.format = PixelFormat.RGBA_8888; mLayoutParams.gravity = Gravity.START | Gravity.TOP; mLayoutParams.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE; mLayoutParams.width = WindowManager.LayoutParams.WRAP_CONTENT; mLayoutParams.height = WindowManager.LayoutParams.WRAP_CONTENT; // 创建悬浮窗视图 mFloatView = LayoutInflater.from(this).inflate(R.layout.float_window, null); // 设置悬浮窗视图的点击事件 mFloatView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { // 点击悬浮窗执行的操作 } }); // 将悬浮窗视图添加到窗口 mWindowManager.addView(mFloatView, mLayoutParams); } @Override public void onDestroy() { super.onDestroy(); // 销毁悬浮窗视图 mWindowManager.removeView(mFloatView); } @Nullable @Override public IBinder onBind(Intent intent) { return null; } } ``` 3. 创建一个悬浮窗布局文件 float_window.xml: ```xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/float_window_icon"/> </RelativeLayout> ``` 4. 在需要显示悬浮窗的地方启动 FloatWindowService: ```java Intent intent = new Intent(this, FloatWindowService.class); startService(intent); ``` 以上就是一个简单的悬浮窗实现方法,您可以根据自己的需求进行修改和扩展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值