美文网首页
Android 悬浮窗口的实现

Android 悬浮窗口的实现

作者: Thomas_yy | 来源:发表于2017-10-24 10:52 被阅读15次

    CompatModeWrapper:
    ** 该类就是实现悬浮窗口的重要类**
    1.CompatModeWrapper相当于是一个壳,而真正实现大部分功能的是它里面的成员变量mWindowManager(WindowManagerImpl类)。
    2.该对象可以通过 getApplication().getSystemService(Context.WINDOW_SERVICE) 得到。(注:如果是通过 activity.getSystemService(Context.WINDOW_SERVICE)得到的只是属于Activity的LocalWindowManager)。
    3.这个对象的创建是在每个进程开始的时候, 通过ContextImpl中的静态代码块创建的, 它使用了单例模式, 保证每个application只有一个。
    4.通过该类可以实现创建添加悬浮窗口,也就是说,在退出当前Activity时,通过该类创建的视图还是可见的,它是属于整个应用进程的视图,存活在进程中,不受Activity的生命周期影响。
    具体的实现操作可以在Activity或者Service中(这两者都是可以创建存活在应用进程中的Android重要组件)实现。
    通过主Activity的启动按钮,启动一个Service,然后在Service中创建添加悬浮窗口:要获取CompatModeWrapper,首先得在应用程序的AndroidManifest.xml文件中添加权限
    <uses-permissionandroid:name="android.permission.SYSTEM_ALERT_WINDOW"/>
    MainActivity的代码如下:

    publicclassMainActivityextendsActivity {
          @Override
          publicvoidonCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         //获取启动按钮
         Button start = (Button)findViewById(R.id.start_id);
         //获取移除按钮
         Button remove = (Button)findViewById(R.id.remove_id);
         //绑定监听
         start.setOnClickListener(newOnClickListener() {
               @Override
               publicvoidonClick(View v) {
                                Intent intent =newIntent(MainActivity.this, FxService.class);
                                //启动FxService
                                startService(intent);
                                finish();
    }
    });
           remove.setOnClickListener(newOnClickListener()  {
                     @Override
                    publicvoidonClick(View v){
                                      Intent intent =newIntent(MainActivity.this, FxService.class);
                                       //终止FxService
                                     stopService(intent);
    }
    });
    }
    }
    

    FloatService的代码如下:

    importandroid.app.Service;
    importandroid.content.Intent;
    importandroid.graphics.PixelFormat;
    importandroid.os.Handler;
    importandroid.os.IBinder;
    importandroid.util.Log;
    importandroid.view.Gravity;
    importandroid.view.LayoutInflater;
    importandroid.view.MotionEvent;
    importandroid.view.View;
    importandroid.view.WindowManager;
    importandroid.view.View.OnClickListener;
    importandroid.view.View.OnTouchListener;
    importandroid.view.WindowManager.LayoutParams;
    importandroid.widget.Button;
    importandroid.widget.LinearLayout;
    importandroid.widget.Toast;
    publicclassFxServiceextendsService  {
    //定义浮动窗口布局
    LinearLayout mFloatLayout;
    WindowManager.LayoutParams wmParams;
    //创建浮动窗口设置布局参数的对象
    WindowManager mWindowManager;
    Button mFloatView;
    privatestaticfinalString TAG ="FxService";
    @Override
    publicvoidonCreate()
    {
    // TODO Auto-generated method stub
    super.onCreate();
    Log.i(TAG,"oncreat");
    createFloatView();
    }
    @Override
    publicIBinder onBind(Intent intent)
    {
    // TODO Auto-generated method stub
    returnnull;
    }
    privatevoidcreateFloatView()
    {
    wmParams =newWindowManager.LayoutParams();
    //获取的是WindowManagerImpl.CompatModeWrapper
    mWindowManager = (WindowManager)getApplication().getSystemService(getApplication().WINDOW_SERVICE);
    Log.i(TAG,"mWindowManager--->"+ mWindowManager);
    //设置window type
    wmParams.type = LayoutParams.TYPE_PHONE;
    //设置图片格式,效果为背景透明
    wmParams.format = PixelFormat.RGBA_8888;
    //设置浮动窗口不可聚焦(实现操作除浮动窗口外的其他可见窗口的操作)
    wmParams.flags = LayoutParams.FLAG_NOT_FOCUSABLE;
    //调整悬浮窗显示的停靠位置为左侧置顶
    wmParams.gravity = Gravity.LEFT | Gravity.TOP;
    // 以屏幕左上角为原点,设置x、y初始值,相对于gravity
    wmParams.x =0;
    wmParams.y =0;
    //设置悬浮窗口长宽数据
    wmParams.width = WindowManager.LayoutParams.WRAP_CONTENT;
    wmParams.height = WindowManager.LayoutParams.WRAP_CONTENT;
    /*// 设置悬浮窗口长宽数据
    wmParams.width = 200;
    wmParams.height = 80;*/
    LayoutInflater inflater = LayoutInflater.from(getApplication());
    //获取浮动窗口视图所在布局
    mFloatLayout = (LinearLayout) inflater.inflate(R.layout.float_layout,null);
    //添加mFloatLayout
    mWindowManager.addView(mFloatLayout, wmParams);
    //浮动窗口按钮
    mFloatView = (Button)mFloatLayout.findViewById(R.id.float_id);
    mFloatLayout.measure(View.MeasureSpec.makeMeasureSpec(0,
    View.MeasureSpec.UNSPECIFIED), View.MeasureSpec
    .makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
    Log.i(TAG,"Width/2--->"+ mFloatView.getMeasuredWidth()/2);
    Log.i(TAG,"Height/2--->"+ mFloatView.getMeasuredHeight()/2);
    //设置监听浮动窗口的触摸移动
    mFloatView.setOnTouchListener(newOnTouchListener()
    {
    @Override
    publicbooleanonTouch(View v, MotionEvent event)
    {
    // TODO Auto-generated method stub
    //getRawX是触摸位置相对于屏幕的坐标,getX是相对于按钮的坐标
    wmParams.x = (int) event.getRawX() - mFloatView.getMeasuredWidth()/2;
    Log.i(TAG,"RawX"+ event.getRawX());
    Log.i(TAG,"X"+ event.getX());
    //减25为状态栏的高度
    wmParams.y = (int) event.getRawY() - mFloatView.getMeasuredHeight()/2-25;
    Log.i(TAG,"RawY"+ event.getRawY());
    Log.i(TAG,"Y"+ event.getY());
    //刷新
    mWindowManager.updateViewLayout(mFloatLayout, wmParams);
    returnfalse;//此处必须返回false,否则OnClickListener获取不到监听
    }
    });
    mFloatView.setOnClickListener(newOnClickListener()
    {
    @Override
    publicvoidonClick(View v)
    {
    // TODO Auto-generated method stub
    Toast.makeText(FxService.this,"onClick", Toast.LENGTH_SHORT).show();
    }
    });
    }
    @Override
    publicvoidonDestroy()
    {
    // TODO Auto-generated method stub
    super.onDestroy();
    if(mFloatLayout !=null)
    {
    //移除悬浮窗口
    mWindowManager.removeView(mFloatLayout);
    }
    }
    }
    

    悬浮窗口的布局文件为R.layout.float_layout,所以,如果我们想设计一个非常美观的悬浮窗口,可以在该布局文件里编写。当然,也可以使用自定义View来设计(哈哈,少年们,在此基础上发挥想象吧)。
    上面代码的效果图如下:左边为启动界面。点击“启动悬浮窗口”按钮,会启动后台service创建悬浮窗口,同时finish当前Activity,这样一个悬浮窗口就创建出来了,该窗口可实现任意位置移动,且可点击监听创建Toast提示(当然,也可以启动一个Activity)。若要移除已创建的窗口,可点击“移除悬浮窗口按钮”,或者强制禁止该应用进程。
    悬浮窗口的布局文件为R.layout.float_layout:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
                      android:layout_width="fill_parent"    
                      android:layout_height="fill_parent"    
                      android:orientation="vertical" >
               <Button
                            android:id="@+id/start_id"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="@string/btn"/>
                  <Button
                            android:id="@+id/remove_id"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="悬浮窗口"/>
    </LinearLayout>
    MainActivity 的布局文件
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_width="fill_parent"
                      android:layout_height="fill_parent"
                      android:orientation="vertical" >
                      <Button
                                    android:id="@+id/start_id"
                                    android:layout_width="wrap_content"
                                    android:layout_height="wrap_content"
                                    android:text="启动悬浮窗口"/>
                    <Button
                            android:id="@+id/remove_id"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="移除悬浮窗口"/>
    </LinearLayout>
    

    特别注意:有的6.0以上(包括6.0)的手机需要手动打开悬浮窗权限 ,这时候如果 我们不想用户去手动打开,也就是强制打开悬浮窗,我们将 FloatService 里的这行代码:

    //设置window type
    wmParams.type = LayoutParams.TYPE_PHONE;
    

    换成

    //设置window type
    wmParams.type =  LayoutParams.TYPE_TOAST;//无需权限
    

    这样就不会跳到用户需要手动打开悬浮窗口的页面了,是不是很简单0.0


    (wmParams.type = LayoutParams.TYPE_PHONE;//需要权限,且在某些系统中还需要手动打开设置,比如miui
    wmParams.type = WindowManager.LayoutParams.TYPE_TOAST;//无需权限)
    如果还有疑问欢迎探讨0.0

    相关文章

      网友评论

          本文标题:Android 悬浮窗口的实现

          本文链接:https://www.haomeiwen.com/subject/yhjtpxtx.html