編輯:關於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);//設置是否獲取焦點
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, 這一組是獲取相對在它父親布局裡的坐標。
對於剛接觸Android的新人和剛走上Android技術崗位的開發者們來說,在熟悉了相關之後,在項目完成後,就會面臨著一個重大的挑戰,那麼就是屏幕適配的問題。當然我們所說
具體可見http://developer.android.com/tools/debugging/ddms.html。 DDMS為IDE和emultor、真正的andro
(一)前言今天我們一起來看一下工具欄控件ToolBarAndroid的介紹完全解析以及最佳實踐。剛創建的React Native技術交流群(282693535),歡迎各位
一.功能描述因為是自己開發了一個app應用,沒資格去申請微信支付和支付寶支付,於是就采用了銀聯支付功能,銀聯支付分為了兩種環境:測試環境和生產環境,一般前期開發的時候都是