android:PopupWindow的使用情境和注意事項

來源:互聯網
上載者:User

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, 這一組是擷取相對在它父親布局裡的座標。

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.