Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android:PopupWindow的使用場景和注意事項

android:PopupWindow的使用場景和注意事項

編輯:關於Android編程

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);//可以設置任意的View
		popupWindow.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 1
Display 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.

Parameters
parent	a parent view to get the getWindowToken() token from
gravity	the gravity which controls the placement of the popup window
x	the popup's x location offset
y	the 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, 這一組是獲取相對在它父親布局裡的坐標。

 

 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved