android开发专题Android开发功能专区

Android Demo : 悬浮窗(支持Android7.0)

2017-08-09  本文已影响14132人  LightingContour

标签:Android Demo 悬浮窗

作者:LightingContour

引言

在网上经常看各种教程,一直打算自己也写一篇。本来打算驻扎CSDN,不过那里的版面真的是……
之前看教程偶遇到简书,还不错,又支持Markdown,那就在这儿驻扎吧~

前一段时间实习在做悬浮窗,苦于网上的教程要么太老旧要么太简陋。还有的过于细致以至于反而让人摸不着门路。故花了些时间自己理顺下思路,写一篇Demo教程,帮助他人的同时也做一个总结。

该教程主要追求短平快,适用于新手。各种参数调配已设置到最简。教程中如有错误,还请多多包涵和指正。

简介

这里我们要做一款Android系统的悬浮窗。打开APP后悬浮窗开启,点击可以移动悬浮窗,连续点击两次按钮可以关闭悬浮窗。(这里点的比较快,退出时是点击了两下

成品展示

需get的基本知识

在假定各位已经有Android的基本了解的情况下,我们需要再扩充以下知识:

1.WindowManager

Android中我们可以使用WindowManager来生成悬浮窗。WindowManager的三个最常用方法为:

在此Demo中,我们可以通过WindowManager来新建一个悬浮窗,悬浮窗的布局通过addView添加、悬浮窗更改位置通过updateViewLayout进行刷新、关闭悬浮窗时调用removeView,跟窗口说再见。

2.Service

作为四大组件之一,大家应该都有所了解和学习,我就不细说了。
在这里我们要以一个Service作为WindowManager的依托对象。在这里我们不使用Bind Service,这样达不到我们制作一个空游无所依的简易悬浮窗的目的。在Service的onBind方法中return null就好了。

onBind return null

当然,这里放一个郭大神的Service专讲链接,需要的请点这里
http://blog.csdn.net/guolin_blog/article/details/11952435

好了没了。Demo毕竟要越简单越好,要不看得头疼。

设计思路分析

本Demo的设计思路如下:

  1. 一个MainActivity作为App的窗口,APP在打开时启动MainAcitivity,MainActivity在确定权限等操作后转到Service并关闭自己。
  2. 一个Service作为Windowmanager的载体。在Service中我们进行悬浮窗的初始设置并开启它。
  3. WindowManager,配套一个XML文件,里面是悬浮窗的布局和里面的各种组件,本Demo中就放一个小小的ImageButton。

跟我一起动手做

  1. 我们新建一个Project,这个Project有一个MainActivity。Demo中的MainActivity就用BlackActivity。

  2. 有了MainActivity后,我们要去除掉它的XML文件,在MainActivity中仅保留以下代码

public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
    }
}

然后,把layout文件夹中MainActivity对应的XML文件放心地删除。

  1. 创建一个Service的Java文件,在Demo中我把它取名为MainService。
    该Service的onBind直接return一个null就行了,另外一定要在Manifest文件中注册它。
注意检查是否进行了Service注册
  1. 在MainActivity中启动Service并且让MainActivity结束自己。
    注意,这里重点来了。
    在Android 6.0后,Android需要动态获取权限,要使用权限,不仅仅要在Manifest文件中定义,还要在代码中动态获取
    详细了解请看这里,有专业级介绍。
    http://blog.csdn.net/caroline_wendy/article/details/50587230
    我们就直奔主题吧
//当AndroidSDK>=23及Android版本6.0及以上时,需要获取OVERLAY_PERMISSION.
//使用canDrawOverlays用于检查,下面为其源码。其中也提醒了需要在manifest文件中添加权限.
        /**
         * Checks if the specified context can draw on top of other apps. As of API
         * level 23, an app cannot draw on top of other apps unless it declares the
         * {@link android.Manifest.permission#SYSTEM_ALERT_WINDOW} permission in its
         * manifest, <em>and</em> the user specifically grants the app this
         * capability. To prompt the user to grant this approval, the app must send an
         * intent with the action
         * {@link android.provider.Settings#ACTION_MANAGE_OVERLAY_PERMISSION}, which
         * causes the system to display a permission management screen.
         *
         */
if (Build.VERSION.SDK_INT >= 23) {
            if (Settings.canDrawOverlays(MainActivity.this)) {
                Intent intent = new Intent(MainActivity.this, MainService.class);
                Toast.makeText(MainActivity.this,"已开启Toucher",Toast.LENGTH_SHORT).show();
                startService(intent);
                finish();
            } else {
                //若没有权限,提示获取.
                Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION);
                Toast.makeText(MainActivity.this,"需要取得权限以使用悬浮窗",Toast.LENGTH_SHORT).show();
                startActivity(intent);
            }
        } else {
            //SDK在23以下,不用管.
            Intent intent = new Intent(MainActivity.this, MainService.class);
            startService(intent);
            finish();
        }
}

上面的代码是要写的动态权限检测,同时在Manifest文件中还要添加对应权限,我粘贴的源码中也提示我们了。
我们需要两个权限,一个ALERT_WINDOW,一个OVERLAY_WINDOW

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

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.lightingcontour.toucher">

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <service android:name=".MainService"/>
    </application>

</manifest>

好了这里Manifest文件和MainActivity就定型了,下一步。

  1. 设置layout
    这里我就不细说了,我就放了一个ImageButton上去,布局大小设置为了300*300,贴了个自己的背景。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="300dp"
    android:layout_height="300dp"
    android:background="@drawable/background">

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:background="@android:drawable/btn_star_big_on"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:layout_constraintBottom_creator="1"
        tools:layout_constraintLeft_creator="1"
        tools:layout_constraintRight_creator="1"
        tools:layout_constraintTop_creator="1" />

</android.support.constraint.ConstraintLayout>
  1. 最后一个重点来了。这里我们要开始码我们的Service了
//Log用的TAG
private static final String TAG = "MainService";

    //要引用的布局文件.
    ConstraintLayout toucherLayout;
    //布局参数.
    WindowManager.LayoutParams params;
    //实例化的WindowManager.
    WindowManager windowManager;

    ImageButton imageButton1;

    //状态栏高度.(接下来会用到)
    int statusBarHeight = -1;
@Override
    public void onCreate()
    {
        super.onCreate();
        Log.i(TAG,"MainService Created");
        //OnCreate中来生成悬浮窗.
        createToucher();
    }

下面的代码分解开实在是太耗费排版,故我在代码中已经做了简要的注释说明。更多的小细节附在代码后。

private void createToucher()
    {
        //赋值WindowManager&LayoutParam.
        params = new WindowManager.LayoutParams();
        windowManager = (WindowManager) getApplication().getSystemService(Context.WINDOW_SERVICE);
        //设置type.系统提示型窗口,一般都在应用程序窗口之上.
        params.type = WindowManager.LayoutParams.TYPE_SYSTEM_ALERT;
        //设置效果为背景透明.
        params.format = PixelFormat.RGBA_8888;
        //设置flags.不可聚焦及不可使用按钮对悬浮窗进行操控.
        params.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;

        //设置窗口初始停靠位置.
        params.gravity = Gravity.LEFT | Gravity.TOP;
        params.x = 0;
        params.y = 0;

        //设置悬浮窗口长宽数据.
        //注意,这里的width和height均使用px而非dp.这里我偷了个懒
        //如果你想完全对应布局设置,需要先获取到机器的dpi
        //px与dp的换算为px = dp * (dpi / 160).
        params.width = 300;
        params.height = 300;

        LayoutInflater inflater = LayoutInflater.from(getApplication());
        //获取浮动窗口视图所在布局.
        toucherLayout = (ConstraintLayout) inflater.inflate(R.layout.toucherlayout,null);
        //添加toucherlayout
        windowManager.addView(toucherLayout,params);

        Log.i(TAG,"toucherlayout-->left:" + toucherLayout.getLeft());
        Log.i(TAG,"toucherlayout-->right:" + toucherLayout.getRight());
        Log.i(TAG,"toucherlayout-->top:" + toucherLayout.getTop());
        Log.i(TAG,"toucherlayout-->bottom:" + toucherLayout.getBottom());

        //主动计算出当前View的宽高信息.
        toucherLayout.measure(View.MeasureSpec.UNSPECIFIED,View.MeasureSpec.UNSPECIFIED);

        //用于检测状态栏高度.
        int resourceId = getResources().getIdentifier("status_bar_height","dimen","android");
        if (resourceId > 0)
        {
            statusBarHeight = getResources().getDimensionPixelSize(resourceId);
        }
        Log.i(TAG,"状态栏高度为:" + statusBarHeight);

        //浮动窗口按钮.
        imageButton1 = (ImageButton) toucherLayout.findViewById(R.id.imageButton1);

        //其他代码...
   }

简要说明
1.Params的各种设置是在做什么:
大家大略看完上面的代码后应该会明白,我们设置了params的各种值,再让它成为我们要生成的悬浮窗的参数集。
这里我简要说明就好了,细节请看这里
http://www.jianshu.com/p/95ceb0a2ed27

/**
 * Window type: system window, such as low power alert. These windows
 * are always on top of application windows.
 * In multiuser systems shows only on the owning user's window.
 */
  1. 为什么要测试状态栏高度:
    这位作者告诉了我们。
    http://blog.csdn.net/a_running_wolf/article/details/50477965
    简而言之就是应用区域!=屏幕区域。这里得到状态栏宽度用于在之后更新悬浮窗时计算偏移量。
imageButton1.setOnClickListener(new View.OnClickListener() {
            long[] hints = new long[2];
            @Override
            public void onClick(View v) {
                Log.i(TAG,"点击了");
                System.arraycopy(hints,1,hints,0,hints.length -1);
                hints[hints.length -1] = SystemClock.uptimeMillis();
                if (SystemClock.uptimeMillis() - hints[0] >= 700)
                {
                    Log.i(TAG,"要执行");
                    Toast.makeText(MainService.this,"连续点击两次以退出",Toast.LENGTH_SHORT).show();
                }else
                {
                    Log.i(TAG,"即将关闭");
                    stopSelf();
                }
            }
        });
imageButton1.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                //ImageButton我放在了布局中心,布局一共300dp
                params.x = (int) event.getRawX() - 150;
                //这就是状态栏偏移量用的地方
                params.y = (int) event.getRawY() - 150 - statusBarHeight;
                windowManager.updateViewLayout(toucherLayout,params);
                return false;
            }
        });
 @Override
    public void onDestroy()
    {
        //用imageButton检查悬浮窗还在不在,这里可以不要。优化悬浮窗时要用到。
        if (imageButton1 != null)
        {
            windowManager.removeView(toucherLayout);
        }
        super.onDestroy();
    }

当当当当,悬浮窗编写完毕啦,可以AVD上跑起来试试了。

结语

这里的悬浮窗Demo比较简单,适合新手。剩下的美化什么的就由各位自己去发掘了。
另外这里有个小问题,在华为手机上Toast一直没法显示出来,其他机型都可以。奇特的华为。如果有解决方案欢迎评论在下方。

源码在GitHub,地址https://github.com/LightingContour/Toucher
如有疑问或纰漏,欢迎询问指正

上一篇下一篇

猜你喜欢

热点阅读