Android不依賴Activity的全域懸浮窗實現

來源:互聯網
上載者:User

標籤:

Android懸浮窗實現 

實現基礎

Android懸浮窗實現使用WindowManager ,WindowManager介紹  

通過Context.getSystemService(Context.WINDOW_SERVICE)可以獲得 WindowManager對象。

每一個WindowManager對象都和一個特定的 Display綁定。
想要擷取一個不同的display的WindowManager,可以用 createDisplayContext(Display)來擷取那個display的 Context,之後再使用:Context.getSystemService(Context.WINDOW_SERVICE)來擷取WindowManager。
使用WindowManager可以在其他應用最上層,甚至手機案頭最上層顯示視窗。
調用的是WindowManager繼承自基類的addView方法和removeView方法來顯示和隱藏視窗。具體見後面的執行個體。
 另:API 17推出了Presentation,它將自動擷取display的Context和WindowManager,可以方便地在另一個display上顯示視窗。
 
WindowManager實現懸浮窗需要聲明許可權
  首先在manifest中添加如下許可權:
<!-- 顯示頂層浮窗 --><uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
  
  注意:在MIUI上需要在設定中開啟本應用的”顯示懸浮窗”開關,並且重啟應用,否則懸浮窗只能顯示在本應用介面內,不能顯示在手機案頭上。
 
服務擷取和基本參數設定
       // 擷取應用的Context        mContext = context.getApplicationContext();        // 擷取WindowManager        mWindowManager = (WindowManager) mContext                .getSystemService(Context.WINDOW_SERVICE);     //參數設定:        final WindowManager.LayoutParams params = new WindowManager.LayoutParams();        // 類型        params.type = WindowManager.LayoutParams.TYPE_SYSTEM_ALERT;        // WindowManager.LayoutParams.TYPE_SYSTEM_ALERT        // 設定flag        int flags = WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM;        // | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;        // 如果設定了WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,彈出的View收不到Back鍵的事件        params.flags = flags;        // 不設定這個彈出框的透明遮罩顯示為黑色        params.format = PixelFormat.TRANSLUCENT;        // FLAG_NOT_TOUCH_MODAL不阻塞事件傳遞到後面的視窗        // 設定 FLAG_NOT_FOCUSABLE 懸浮視窗較小時,後面的應用表徵圖由不可長按變為可長按        // 不設定這個flag的話,home頁的劃屏會有問題        params.width = LayoutParams.MATCH_PARENT;        params.height = LayoutParams.MATCH_PARENT;        params.gravity = Gravity.CENTER;
點擊和按鍵事件
  除了View中的各個控制項的點擊事件之外,彈窗View的消失控制需要一些處理。
  點擊彈窗外部可隱藏彈窗的效果,首先,懸浮窗是全屏的,只不過最外層的是透明或者半透明的:
具體實現
package com.robert.floatingwindow;import android.content.Context;import android.graphics.PixelFormat;import android.graphics.Rect;import android.view.Gravity;import android.view.KeyEvent;import android.view.LayoutInflater;import android.view.MotionEvent;import android.view.View;import android.view.View.OnKeyListener;import android.view.View.OnTouchListener;import android.view.WindowManager;import android.view.View.OnClickListener;import android.view.WindowManager.LayoutParams;import android.widget.Button;/*** 彈窗輔助類** @ClassName WindowUtils***/public class WindowUtils {    private static final String LOG_TAG = "WindowUtils";    private static View mView = null;    private static WindowManager mWindowManager = null;    private static Context mContext = null;    public static Boolean isShown = false;    /**     * 顯示彈出框     *     * @param context     * @param view     */    public static void showPopupWindow(final Context context) {        if (isShown) {            LogUtil.i(LOG_TAG, "return cause already shown");            return;        }        isShown = true;        LogUtil.i(LOG_TAG, "showPopupWindow");        // 擷取應用的Context        mContext = context.getApplicationContext();        // 擷取WindowManager        mWindowManager = (WindowManager) mContext                .getSystemService(Context.WINDOW_SERVICE);        mView = setUpView(context);        final WindowManager.LayoutParams params = new WindowManager.LayoutParams();        // 類型        params.type = WindowManager.LayoutParams.TYPE_SYSTEM_ALERT;        // WindowManager.LayoutParams.TYPE_SYSTEM_ALERT        // 設定flag        int flags = WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM;        // | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;        // 如果設定了WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,彈出的View收不到Back鍵的事件        params.flags = flags;        // 不設定這個彈出框的透明遮罩顯示為黑色        params.format = PixelFormat.TRANSLUCENT;        // FLAG_NOT_TOUCH_MODAL不阻塞事件傳遞到後面的視窗        // 設定 FLAG_NOT_FOCUSABLE 懸浮視窗較小時,後面的應用表徵圖由不可長按變為可長按        // 不設定這個flag的話,home頁的劃屏會有問題        params.width = LayoutParams.MATCH_PARENT;        params.height = LayoutParams.MATCH_PARENT;        params.gravity = Gravity.CENTER;        mWindowManager.addView(mView, params);        LogUtil.i(LOG_TAG, "add view");    }    /**     * 隱藏彈出框     */    public static void hidePopupWindow() {        LogUtil.i(LOG_TAG, "hide " + isShown + ", " + mView);        if (isShown && null != mView) {            LogUtil.i(LOG_TAG, "hidePopupWindow");            mWindowManager.removeView(mView);            isShown = false;        }    }    private static View setUpView(final Context context) {        LogUtil.i(LOG_TAG, "setUp view");        View view = LayoutInflater.from(context).inflate(R.layout.popupwindow,                null);        Button positiveBtn = (Button) view.findViewById(R.id.positiveBtn);        positiveBtn.setOnClickListener(new OnClickListener() {            @Override            public void onClick(View v) {                LogUtil.i(LOG_TAG, "ok on click");                // 開啟安裝包                // 隱藏彈窗                WindowUtils.hidePopupWindow();            }        });        Button negativeBtn = (Button) view.findViewById(R.id.negativeBtn);        negativeBtn.setOnClickListener(new OnClickListener() {            @Override            public void onClick(View v) {                LogUtil.i(LOG_TAG, "cancel on click");                WindowUtils.hidePopupWindow();            }        });        // 點擊視窗外部地區可消除        // 這點的實現主要將懸浮窗設定為全屏大小,外層有個透明背景,中間一部分視為內容地區        // 所以點擊內容地區外部視為點擊懸浮窗外部        final View popupWindowView = view.findViewById(R.id.popup_window);// 非透明的內容地區        view.setOnTouchListener(new OnTouchListener() {            @Override            public boolean onTouch(View v, MotionEvent event) {                LogUtil.i(LOG_TAG, "onTouch");                int x = (int) event.getX();                int y = (int) event.getY();                Rect rect = new Rect();                popupWindowView.getGlobalVisibleRect(rect);                if (!rect.contains(x, y)) {                    WindowUtils.hidePopupWindow();                }                LogUtil.i(LOG_TAG, "onTouch : " + x + ", " + y + ", rect: "                        + rect);                return false;            }        });        // 點擊back鍵可消除        view.setOnKeyListener(new OnKeyListener() {            @Override            public boolean onKey(View v, int keyCode, KeyEvent event) {                switch (keyCode) {                case KeyEvent.KEYCODE_BACK:                    WindowUtils.hidePopupWindow();                    return true;                default:                    return false;                }            }        });        return view;    }}


歡迎掃描二維碼,關注公眾帳號



Android不依賴Activity的全域懸浮窗實現

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.