91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解Android PopupWindow怎么合理控制彈出位置(showAtLocation)

發布時間:2020-10-07 02:13:30 來源:腳本之家 閱讀:173 作者:popfisher 欄目:移動開發

說到PopupWindow,應該都會有種熟悉的感覺,使用起來也很簡單

// 一個自定義的布局,作為顯示的內容
Context context = null;  // 真實環境中要賦值
int layoutId = 0;      // 布局ID
View contentView = LayoutInflater.from(context).inflate(layoutId, null);
   
final PopupWindow popupWindow = new PopupWindow(contentView,
        LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, true);

popupWindow.setTouchable(true);
// 如果不設置PopupWindow的背景,有些版本就會出現一個問題:無論是點擊外部區域還是Back鍵都無法dismiss彈框
// 這里單獨寫一篇文章來分析
popupWindow.setBackgroundDrawable(new ColorDrawable());
// 設置好參數之后再show
popupWindow.showAsDropDown(contentView);

如果創建PopupWindow的時候沒有指定高寬,那么showAsDropDown默認只會向下彈出顯示,這種情況有個最明顯的缺點就是:彈窗口可能被屏幕截斷,顯示不全,所以需要使用到另外一個方法showAtLocation,這個的坐標是相對于整個屏幕的,所以需要我們自己計算位置。

如下圖所示,我們可以根據屏幕左上角的坐標A,屏幕高寬,點擊View的左上角的坐標C,點擊View的大小以及PopupWindow布局的大小計算出PopupWindow的顯示位置B

 詳解Android PopupWindow怎么合理控制彈出位置(showAtLocation)

計算方法源碼如下:

  /**
   * 計算出來的位置,y方向就在anchorView的上面和下面對齊顯示,x方向就是與屏幕右邊對齊顯示
   * 如果anchorView的位置有變化,就可以適當自己額外加入偏移來修正
   * @param anchorView 呼出window的view
   * @param contentView  window的內容布局
   * @return window顯示的左上角的xOff,yOff坐標
   */
  private static int[] calculatePopWindowPos(final View anchorView, final View contentView) {
    final int windowPos[] = new int[2];
    final int anchorLoc[] = new int[2];
     // 獲取錨點View在屏幕上的左上角坐標位置
    anchorView.getLocationOnScreen(anchorLoc);
    final int anchorHeight = anchorView.getHeight();
    // 獲取屏幕的高寬
    final int screenHeight = ScreenUtils.getScreenHeight(anchorView.getContext());
    final int screenWidth = ScreenUtils.getScreenWidth(anchorView.getContext());
    contentView.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
    // 計算contentView的高寬
    final int windowHeight = contentView.getMeasuredHeight();
    final int windowWidth = contentView.getMeasuredWidth();
    // 判斷需要向上彈出還是向下彈出顯示
    final boolean isNeedShowUp = (screenHeight - anchorLoc[1] - anchorHeight < windowHeight);
    if (isNeedShowUp) {
      windowPos[0] = screenWidth - windowWidth;
      windowPos[1] = anchorLoc[1] - windowHeight;
    } else {
      windowPos[0] = screenWidth - windowWidth;
      windowPos[1] = anchorLoc[1] + anchorHeight;
    }
    return windowPos;
  }

接下來調用showAtLoaction顯示:

View windowContentViewRoot = 我們要設置給PopupWindow進行顯示的View
int windowPos[] = calculatePopWindowPos(view, windowContentViewRoot);
int xOff = 20;// 可以自己調整偏移
windowPos[0] -= xOff;
popupwindow.showAtLocation(view, Gravity.TOP | Gravity.START, windowPos[0], windowPos[1]);
// windowContentViewRoot是根布局View

上面的例子只是提供了一種計算方式,在實際開發中可以根據需求自己計算,比如anchorView在左邊的情況,在中間的情況,可以根據實際需求寫一個彈出位置能夠自適應的PopupWindow。

補充上獲取屏幕高寬的代碼ScreenUtils.java:

  /**
   * 獲取屏幕高度(px)
   */
  public static int getScreenHeight(Context context) {
    return context.getResources().getDisplayMetrics().heightPixels;
  }
  /**
   * 獲取屏幕寬度(px)
   */
  public static int getScreenWidth(Context context) {
    return context.getResources().getDisplayMetrics().widthPixels;
  }

Demo截圖展示:

詳解Android PopupWindow怎么合理控制彈出位置(showAtLocation)

詳解Android PopupWindow怎么合理控制彈出位置(showAtLocation)

詳解Android PopupWindow怎么合理控制彈出位置(showAtLocation)

Demo下載地址:https://github.com/PopFisher/SmartPopupWindow

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

拉萨市| 潜山县| 昌黎县| 鹤山市| 来宾市| 高要市| 涟源市| 丰镇市| 连山| 章丘市| 乐安县| 精河县| 太仓市| 两当县| 社旗县| 清远市| 疏勒县| 张家口市| 玉林市| 山阴县| 宣恩县| 西安市| 阜平县| 海林市| 和政县| 天长市| 郸城县| 呼玛县| 晋州市| 昭苏县| 保靖县| 龙泉市| 广南县| 辉县市| 睢宁县| 贵南县| 兰西县| 德阳市| 乌兰浩特市| 老河口市| 洮南市|