淺談PopupWindow在Android開發(fā)中的使用

在Android中彈出式菜單(以下稱彈窗)是使用十分廣泛一種菜單呈現(xiàn)的方式,彈窗為用戶交互提供了便利。關(guān)于彈窗的實現(xiàn)大致有以下兩種方式AlertDialog和PopupWindow,當(dāng)然網(wǎng)上也有使用Activity并配合Dialog主題的方式實現(xiàn)彈窗,有興趣的朋友也可以去研究一下。對于AlertDialog和PopupWindow兩者的最主要區(qū)別也有以下兩點:

1 、位置是否固定。 AlertDialog在位置顯示上是固定的,而PopupWindow則相對比較隨意,能夠在主屏幕上的任意位置顯示。

2、是否會阻塞UI線程。 AlertDialog在顯示的時候不會阻塞UI線程,而PopupWindow在顯示的時候會阻塞UI線程。

PopupWindow在android.widget包下,Google官方文檔對PopupWindow的描述是:

"A popup window that can be used to display an arbitrary view. The popupwindow is a floating container that appears on top of the current activity."

也就是說PopupWindow是一個以彈窗方式呈現(xiàn)的控件,可以用來顯示任意視圖(View),而且會浮動在當(dāng)前活動(activity)的頂部”。因此我們可以通過PopupWindow實現(xiàn)各種各樣的彈窗效果,進行信息的展示或者是UI交互,由于PopupWindow自定義布局比較方便,而且在顯示位置比較自由不受限制,因此受到眾多開發(fā)者的青睞。

廢話不多說,進入正題。


PopupWindow的使用


其實PopupWindow的使用非常簡單,總的來說分為兩步:

1、調(diào)用PopupWindow的構(gòu)造器創(chuàng)建PopupWindow對象,并完成一些初始化設(shè)置。

2、調(diào)用PopupWindow的showAsDropDown(View view)將PopupWindow作為View組件的下拉組件顯示出來;或調(diào)用PopupWindow的showAtLocation()方法將PopupWindow在指定位置顯示出來。

創(chuàng)建并完成初始化設(shè)置:

PopupWindow popupWindow =new PopupWindow(this);

popupWindow.setWidth(ViewGroup.LayoutParams.WRAP_CONTENT);

popupWindow.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);

popupWindow.setContentView(LayoutInflater.from(this).inflate(R.layout.layout_popupwindow_style01,null));

popupWindow.setBackgroundDrawable(new ColorDrawable(0x00000000));

popupWindow.setOutsideTouchable(false);

popupWindow.setFocusable(true);


其中,setWidth、setHeight和setContentView三者必須實現(xiàn),否則將不會顯示任何視圖。

?setwidth和setHeight的參數(shù)值可以是具體的數(shù)值,也可以是MATCH_PARENT或者是WRAP_CONTENT。

setContentView則是為PopupWindow設(shè)置視圖內(nèi)容。

? setFocusable顧名思義就是讓PopupWindow獲得焦點。

?setBackgroundDrawable從字面理解就是為PopupWindow設(shè)置一個背景。?

setOutsideTouchable則表示PopupWindow內(nèi)容區(qū)域外的區(qū)域是否響應(yīng)點擊事件,Android官方給出的文檔則表示點擊內(nèi)容區(qū)域外的區(qū)域是否關(guān)閉窗口,那么設(shè)置為true應(yīng)該就是表示關(guān)閉,設(shè)置為false就是表示不關(guān)閉咯! 那么我們就動手試一下吧,驗證一下是不是和我們想象的相吻合:


實驗結(jié)果似乎和我們想象的不太一樣,于是試著上網(wǎng)找找結(jié)果看得出如下結(jié)論:setFocusable確實是讓PopupWindow獲得焦點,獲得焦點的PopupWindow能夠處理物理按鈕的點擊事件,否則點擊事件將向上傳遞由Activity處理,這也能夠解釋為什么在setFocusable(false)的情況下點擊返回按鈕會退出當(dāng)前Activity。關(guān)于焦點設(shè)置需要注意的一點是:如果PopupWindow中有Editor的話,focusable必須要為true。

可是還是有一點我似乎不太明白,為什么設(shè)置setOutsideTouchable(true),點擊外部區(qū)域還是不會關(guān)閉窗口呢,這似乎與Google官方給出的解釋有點出入,于是試著從源碼尋找答案:


不看不知道,原來另有玄機,外部點擊事件的響應(yīng)還與backgroundDrawable有關(guān),在backgroundDrawable!=null的情況下,PopupWindow會以backgroundDrawable作為背景生成一個根據(jù)contentView和backgroundDrawable生成一個PopupBackgroundView并返回,而如果在backgroundDrawable==null的情況下,則直接返回contentView。于是乎接著往下搜索,原來PopupBackgroundView是一個內(nèi)部私有類繼承至FrameLayout,且該類完成了對onKey和onTouch事件的分發(fā)處理。因為contentView我們并沒有進行onKey和onTouch事件的分發(fā)處理,所以在backgroundDrawable==null的情況下,即使PopupWindow獲得屏幕焦點,PopupWindow也不能處理物理按鍵的點擊事件,因此就算點擊返回按鈕也會沒有任何反應(yīng),更別說外部點擊事件的響應(yīng)了。這樣也就能解釋為什么在backgroundDrawable==null的情況下點擊返回鍵或者是點擊外部區(qū)域都不會關(guān)閉窗口了,因此我們在使用PopupWindow的時候都會設(shè)置焦點并且再設(shè)置一個背景,但為了不影響顯示效果可以設(shè)置一個全透明背景:

setBackgroundDrawable(new ColorDrawable(0x00000000));

但是,眼尖的朋友已經(jīng)發(fā)現(xiàn),還有一種情況似乎解釋不通在setBackgroundDrawable(new ColorDrawable(0x00000000))、setOutsideTouchable(false)、setFocusable(true)的情況下,話說背景也有了,也設(shè)置焦點了,為什么setOutsideTouchable(false)點擊外部區(qū)域還是會關(guān)閉窗口呢? 說實話看了半天源碼也沒能明白個啥意思,好吧,這可能也是Android的一個Bug,只能想辦法去解決,于是我想著是否可以重寫setOutsideTouchable方法和setContentView方法來解決問題呢。在setContentView的時候,使contentView獲得焦點并添加按鍵監(jiān)聽事件,于是在任何情況下都能響應(yīng)返回按鈕的點擊事件了。在setOutsideTouchable的時候判斷為true的話就設(shè)置PopupWindow的backgroundDrawable,如果backgroundDrawable==null的話,就新建一個透明背景,也不影響顯示效果。

重寫setContentView():

@Override

public void setContentView (View contentView)?{

if(contentView !=null)?{

super.setContentView(contentView);

contentView.setFocusable(true); ? ? ? ??//

contentView.setFocusableInTouchMode(true); ? ??//

contentView.setOnKeyListener( new ?View.OnKeyListener(){

@Override

public ? boolean ? onKey(View v,int ?keyCode, KeyEvent event){

switch(keyCode) {

case KeyEvent.KEYCODE_BACK:? ?

dismiss();

return ?true;

default:

break; ?}

return ?false; ? }? ? ? ? });?

}

}

重寫setOutsideTouchable():

@Override ?

public void setOutsideTouchable(boolean touchable){

super.setOutsideTouchable(touchable);

if(touchable) {

if(mBackgroundDrawable ==null) {

mBackgroundDrawable =new ColorDrawable(0x00000000);? ? ? ? }

super.setBackgroundDrawable(mBackgroundDrawable);? ?

}else{

super.setBackgroundDrawable(null);?

}

}

嘗試著運行一遍, Bingo!? 完美解決?。?!


PopupWindow的顯示:

PopupWindow的顯示大致又可以分為兩類:

相對于視圖中某個控件的相對位置(默認(rèn)位于控件的正左下方)和相對于父控件的相對位置;

相對于視圖中某個控件的相對位置:

showAsDropDown(View anchor):相對某個控件的位置(正左下方),無偏移。

showAsDropDown(View anchor, int xoff, int yoff):相對某個控件的位置,同時可以設(shè)置偏移。

showAsDropDown(View anchor, int xoff, int yoff, int gravity):相對某個控件的位置,對齊方式(嘗試過,但似乎沒有效果),同時可以設(shè)置偏移。

相對于父控件的相對位置:

showAtLocation(View parent, int gravity, int x, int y):相對于父控件的位置,同時可以設(shè)置偏移量。

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? setOutsideTouchable.gif

好了,關(guān)于PopupWindow的使用就介紹到這里。如果文中有什么敘述不當(dāng)?shù)牡胤?,希望能夠指出,期待您的意見,我們一起交流。最后附上我自己嘗試去寫的BasePopupWindow基類,包含窗口出現(xiàn)和消失的一個背景漸變動畫,可以使窗口出現(xiàn)消失顯得不那么生硬,BasePopupWindow:

public class BasePopupWindow extends PopupWindow{

private Context mContext;

private float mShowAlpha =0.88f;

private Drawable mBackgroundDrawable;

public BasePopupWindow(Context context){

this.mContext = context;? ? ? ??

initBasePopupWindow();? ? }


@Override

public void setOutsideTouchable(booleantouchable){

super.setOutsideTouchable(touchable);

if(touchable) {

if(mBackgroundDrawable ==null) {? ? ? ? ? ? ? ??

mBackgroundDrawable =new ColorDrawable(0x00000000); ? ? ?}

super.setBackgroundDrawable(mBackgroundDrawable);? ? ? ??

}else{

super.setBackgroundDrawable(null); ?}??

}


@Override

public void setBackgroundDrawable( Drawable ?background){? ? ? ??

mBackgroundDrawable = background;? ? ? ??

setOutsideTouchable(isOutsideTouchable());? ? }


/**

* 初始化BasePopupWindow的一些信息

* */

private void initBasePopupWindow(){??

setAnimationStyle(android.R.style.Animation_Dialog);? ? ? ??

setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);? ? ? ??

setWidth(ViewGroup.LayoutParams.WRAP_CONTENT);? ? ? ??

setOutsideTouchable(true);//默認(rèn)設(shè)置outside點擊無響應(yīng)setFocusable(true);? ??

}

@Override

public void setContentView(View contentView){

if(contentView !=null) {? ? ? ? ? ??

contentView.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);

super.setContentView(contentView);? ? ? ? ? ??

addKeyListener(contentView);? ? ? ? }? ??

}


public Context ?getContext(){

returnmContext;? ? }


@Override

public void showAtLocation(View parent,int gravity,intx,inty){

super.showAtLocation(parent, gravity, x, y);? ? ? ??

showAnimator().start();? ??

}

@Override public void showAsDropDown(View anchor){

super.showAsDropDown(anchor);? ? ? ?

?showAnimator().start();? ??

}

@Override

public void showAsDropDown(View anchor,int xoff,int yoff){

super.showAsDropDown(anchor, xoff, yoff);? ? ? ??

showAnimator().start();? ?

}

@Override

public void showAsDropDown(View anchor,intxoff,intyoff,int gravity){

super.showAsDropDown(anchor, xoff, yoff, gravity);? ? ? ??

showAnimator().start();? ??

}

@Override

public void dismiss(){

super.dismiss();

dismissAnimator().start();? ?

}

/**

* 窗口顯示,窗口背景透明度漸變動畫

* */

private ValueAnimator showAnimator(){? ? ? ??

ValueAnimator animator = ValueAnimator.ofFloat(1.0f, mShowAlpha);? ? ? ??

animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {

@Override

public void onAnimationUpdate( ValueAnimator ?animation){

floatalpha = (float) animation.getAnimatedValue();? ? ? ? ? ? ? ??

setWindowBackgroundAlpha(alpha);? ? ? ? ? ??

} });? ? ? ??

animator.setDuration(360);

return animator;? ? }

/**

* 窗口隱藏,窗口背景透明度漸變動畫

* */

private ValueAnimator dismissAnimator(){? ? ? ?

ValueAnimator animator = ValueAnimator.ofFloat(mShowAlpha,1.0f);? ? ? ?

animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {

@Override

public void onAnimationUpdate(ValueAnimator animation){

float alpha = (float) animation.getAnimatedValue();? ? ? ? ? ? ? ??

setWindowBackgroundAlpha(alpha);? ? ? ? ? ? }? ? ? ? });? ? ? ??

animator.setDuration(320);

return animator;? ?

}

/**

* 為窗體添加outside點擊事件

* */

private void addKeyListener(View contentView){

if(contentView !=null) {? ? ? ? ? ??

contentView.setFocusable(true);? ? ? ? ? ??

contentView.setFocusableInTouchMode(true);? ? ? ? ? ??

contentView.setOnKeyListener(new View.OnKeyListener() {

@Override public boolean onKey(View view,int keyCode, KeyEvent event){

switch(keyCode) {

caseKeyEvent.KEYCODE_BACK :? ? ? ? ? ? ? ? ? ? ? ? ? ??

dismiss();

return true;

default:

break;? ? ? ? ? ? ? ? ? ?

}

return false; ? ? ?

}? ? ? ? ? ?

});? ? ? ?

}? ?

}

/**

* 控制窗口背景的不透明度

* */

private void setWindowBackgroundAlpha(float alpha){? ? ? ??

Window window = ((Activity)getContext()).getWindow();? ? ? ??

WindowManager.LayoutParams layoutParams = window.getAttributes();? ? ? ?

layoutParams.alpha = alpha;? ? ? ??

window.setAttributes(layoutParams);? ??

}

}


原文鏈接:http://www.lxweimin.com/p/825d1cc9fa79

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

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