android:PopupWindow的使用情境和注意事項
1.PopupWindow的特點
借用Google官方的說法:
“A popup window that can be used to display an arbitrary view. The popup window is a floating container that appears on top of the current activity.”
也就是說,popupwindow是activity上方的一個懸浮容器,它可以顯示任意的視圖View,很霸氣的樣子。下面看一下,它如何使用的。
2.初始化PopupWindow的一些特性
舉例:
PopupWindow popupWindow = new PopupWindow(getApplicationContext());popupWindow.setContentView(contentView);//可以設定任意的ViewpopupWindow.setWidth(LayoutParams.WRAP_CONTENT);//設定寬度popupWindow.setHeight(LayoutParams.WRAP_CONTENT);//高度popupWindow.setAnimationStyle(R.anim.abc_fade_in);//顯示的動畫popupWindow.setFocusable(true);//設定是否擷取焦點
其中,contentView是你想要顯示的View。
3.PopupWindow的顯示和隱藏
顯示的方法:
public void showAtLocation (View parent, int gravity, int x, int y)Added in API level 1Display the content view in a popup window at the specified location. If the popup window cannot fit on screen, it will be clipped. See WindowManager.LayoutParams for more information on how gravity and the x and y parameters are related. Specifying a gravity of NO_GRAVITY is similar to specifying Gravity.LEFT | Gravity.TOP.Parametersparenta parent view to get the getWindowToken() token fromgravitythe gravity which controls the placement of the popup windowxthe popup's x location offsetythe popup's y location offset
popupWindow.showAtLocation(contentView, Gravity.CENTER, 0, 0);//設定置中
popupWindow.showAtLocation(contentView, Gravity.NO_GRAVITY, x, y);//顯示視窗的以(x,y)為左上方的位置
隱藏:
if (popupWindow != null&& popupWindow.isShowing()) {popupWindow.dismiss();popupWindow = null;}
相關:注意,在計算view的位置時:
Android裡面提供了一些方法可以擷取View在螢幕中的位置。
1).getLocationOnScreen ,計算該視圖在全域座標系中的x,y值,擷取在當前螢幕內的絕對座標(該值從螢幕頂端算起,包括了通知欄高度)。
2).getLocationInWindow ,計算該視圖在它所在的widnow的座標x,y值。
3)getLeft , getTop, getBottom, getRight, 這一組是擷取相對在它父親布局裡的座標。