PopUpWindow在6.0以上返回監(jiān)聽無效的問題

我們?cè)陂_發(fā)中經(jīng)常使用到PopUpWindow,有時(shí)我們需要在彈出popupwindow之后帝牡,點(diǎn)擊手機(jī)的返回按鍵,在popupwindow dismiss之前做一些其他的事情蒙揣,比如動(dòng)畫效果靶溜,以下為標(biāo)準(zhǔn)寫法

            View view= LayoutInflater.from(MainActivity.this).inflate(R.layout.pop_layout,null);
            view.setFocusable(true);
            view.setFocusableInTouchMode(true);
            final PopupWindow popupWindow=new PopupWindow(view, ViewGroup.LayoutParams.WRAP_CONTENT,         
            ViewGroup.LayoutParams.WRAP_CONTENT);
            popupWindow.setFocusable(true);
            popupWindow.showAtLocation(view, Gravity.BOTTOM,0,0);
            view.setOnKeyListener(new View.OnKeyListener() {
                @Override
                public boolean onKey(View v, int keyCode, KeyEvent event) {
                    if(keyCode == KeyEvent.KEYCODE_BACK){
                        //do something
                        popupWindow.dismiss();
                        return true;
                    }
                    return false;
                }
            });

這代碼在6.0以下系統(tǒng)沒有問題,在6.0以上系統(tǒng)就出現(xiàn)了攔截不到手機(jī)返回按鍵事件的問題了懒震,onKey不會(huì)執(zhí)行罩息。查看源碼,我發(fā)現(xiàn)了問題所在个扰,他們都會(huì)執(zhí)行preparePopup方法瓷炮,而preparePopup有所區(qū)別, 以下為Android 5.0 popwindow的preparePopup方法源碼

  private void preparePopup(WindowManager.LayoutParams p) {
    if (mContentView == null || mContext == null || mWindowManager == null) {
        throw new IllegalStateException("You must specify a valid content view by "
                + "calling setContentView() before attempting to show the popup.");
    }

    if (mBackground != null) {
        final ViewGroup.LayoutParams layoutParams = mContentView.getLayoutParams();
        int height = ViewGroup.LayoutParams.MATCH_PARENT;
        if (layoutParams != null &&
                layoutParams.height == ViewGroup.LayoutParams.WRAP_CONTENT) {
            height = ViewGroup.LayoutParams.WRAP_CONTENT;
        }

        // when a background is available, we embed the content view
        // within another view that owns the background drawable
        PopupViewContainer popupViewContainer = new PopupViewContainer(mContext);
        PopupViewContainer.LayoutParams listParams = new PopupViewContainer.LayoutParams(
                ViewGroup.LayoutParams.MATCH_PARENT, height
        );
        popupViewContainer.setBackground(mBackground);
        popupViewContainer.addView(mContentView, listParams);

        mPopupView = popupViewContainer;
    } else {
        mPopupView = mContentView;
    }

    mPopupView.setElevation(mElevation);
    mPopupViewInitialLayoutDirectionInherited =
            (mPopupView.getRawLayoutDirection() == View.LAYOUT_DIRECTION_INHERIT);
    mPopupWidth = p.width;
    mPopupHeight = p.height;
}

我們沒有設(shè)置backgroud所以mBackground為null ,執(zhí)行 mPopupView = mContentView代碼递宅,以下是6.0部分源碼

private void preparePopup(WindowManager.LayoutParams p) {
    if (mContentView == null || mContext == null || mWindowManager == null) {
        throw new IllegalStateException("You must specify a valid content view by "
                + "calling setContentView() before attempting to show the popup.");
    }

    // The old decor view may be transitioning out. Make sure it finishes
    // and cleans up before we try to create another one.
    if (mDecorView != null) {
        mDecorView.cancelTransitions();
    }

    // When a background is available, we embed the content view within
    // another view that owns the background drawable.
    if (mBackground != null) {
        mBackgroundView = createBackgroundView(mContentView);
        mBackgroundView.setBackground(mBackground);
    } else {
        mBackgroundView = mContentView;
    }

    mDecorView = createDecorView(mBackgroundView);

    // The background owner should be elevated so that it casts a shadow.
    mBackgroundView.setElevation(mElevation);

    // We may wrap that in another view, so we'll need to manually specify
    // the surface insets.
    p.setSurfaceInsets(mBackgroundView, true /*manual*/, true /*preservePrevious*/);

    mPopupViewInitialLayoutDirectionInherited =
            (mContentView.getRawLayoutDirection() == View.LAYOUT_DIRECTION_INHERIT);
}

我們發(fā)現(xiàn)這里無論有沒有設(shè)置background娘香,都會(huì)執(zhí)行createDecorView方法,我們?cè)倏纯碿reateDecorView方法源碼

    private PopupDecorView createDecorView(View contentView) {
    final ViewGroup.LayoutParams layoutParams = mContentView.getLayoutParams();
    final int height;
    if (layoutParams != null && layoutParams.height == WRAP_CONTENT) {
        height = WRAP_CONTENT;
    } else {
        height = MATCH_PARENT;
    }

    final PopupDecorView decorView = new PopupDecorView(mContext);
    decorView.addView(contentView, MATCH_PARENT, height);
    decorView.setClipChildren(false);
    decorView.setClipToPadding(false);

    return decorView;
}

這個(gè)方法對(duì)contentView進(jìn)行了包裝办龄,我們?cè)倏纯碢opupDecorView源碼

 private class PopupDecorView extends FrameLayout {
    /** Runnable used to clean up listeners after exit transition. */
    private Runnable mCleanupAfterExit;

    public PopupDecorView(Context context) {
        super(context);
    }

    @Override
    public boolean dispatchKeyEvent(KeyEvent event) {
        if (event.getKeyCode() == KeyEvent.KEYCODE_BACK) {
            if (getKeyDispatcherState() == null) {
                return super.dispatchKeyEvent(event);
            }

            if (event.getAction() == KeyEvent.ACTION_DOWN && event.getRepeatCount() == 0) {
                final KeyEvent.DispatcherState state = getKeyDispatcherState();
                if (state != null) {
                    state.startTracking(event, this);
                }
                return true;
            } else if (event.getAction() == KeyEvent.ACTION_UP) {
                final KeyEvent.DispatcherState state = getKeyDispatcherState();
                if (state != null && state.isTracking(event) && !event.isCanceled()) {
                    dismiss();
                    return true;
                }
            }
            return super.dispatchKeyEvent(event);
        } else {
            return super.dispatchKeyEvent(event);
        }
    }

}

問題就在這烘绽,這里的PopupDecorView是FrameLayout級(jí)別的,這里設(shè)置了dispatchKeyEvent俐填,并且 return true安接,消費(fèi)了點(diǎn)擊事件,所以不會(huì)分發(fā)給我們?cè)O(shè)置的onkeyListner玷禽,因此我們?cè)O(shè)置監(jiān)聽無效,目前沒有找到好的解決辦法呀打,但好在不影響功能矢赁。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市贬丛,隨后出現(xiàn)的幾起案子撩银,更是在濱河造成了極大的恐慌,老刑警劉巖豺憔,帶你破解...
    沈念sama閱讀 212,383評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件额获,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡恭应,警方通過查閱死者的電腦和手機(jī)抄邀,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來昼榛,“玉大人境肾,你說我怎么就攤上這事。” “怎么了奥喻?”我有些...
    開封第一講書人閱讀 157,852評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵偶宫,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我环鲤,道長(zhǎng)纯趋,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,621評(píng)論 1 284
  • 正文 為了忘掉前任冷离,我火速辦了婚禮吵冒,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘酒朵。我一直安慰自己桦锄,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,741評(píng)論 6 386
  • 文/花漫 我一把揭開白布蔫耽。 她就那樣靜靜地躺著结耀,像睡著了一般。 火紅的嫁衣襯著肌膚如雪匙铡。 梳的紋絲不亂的頭發(fā)上图甜,一...
    開封第一講書人閱讀 49,929評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音鳖眼,去河邊找鬼黑毅。 笑死,一個(gè)胖子當(dāng)著我的面吹牛钦讳,可吹牛的內(nèi)容都是我干的矿瘦。 我是一名探鬼主播,決...
    沈念sama閱讀 39,076評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼愿卒,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼缚去!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起琼开,我...
    開封第一講書人閱讀 37,803評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤易结,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后柜候,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體搞动,經(jīng)...
    沈念sama閱讀 44,265評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,582評(píng)論 2 327
  • 正文 我和宋清朗相戀三年渣刷,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了鹦肿。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,716評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡辅柴,死狀恐怖狮惜,靈堂內(nèi)的尸體忽然破棺而出高诺,到底是詐尸還是另有隱情,我是刑警寧澤碾篡,帶...
    沈念sama閱讀 34,395評(píng)論 4 333
  • 正文 年R本政府宣布虱而,位于F島的核電站,受9級(jí)特大地震影響开泽,放射性物質(zhì)發(fā)生泄漏牡拇。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,039評(píng)論 3 316
  • 文/蒙蒙 一穆律、第九天 我趴在偏房一處隱蔽的房頂上張望惠呼。 院中可真熱鬧,春花似錦峦耘、人聲如沸剔蹋。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,798評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽泣崩。三九已至,卻和暖如春洛口,著一層夾襖步出監(jiān)牢的瞬間矫付,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,027評(píng)論 1 266
  • 我被黑心中介騙來泰國打工第焰, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留买优,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,488評(píng)論 2 361
  • 正文 我出身青樓挺举,卻偏偏與公主長(zhǎng)得像杀赢,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子湘纵,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,612評(píng)論 2 350

推薦閱讀更多精彩內(nèi)容