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

溫馨提示×

溫馨提示×

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

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

Android popupWindow彈出窗體實現方法分析

發布時間:2020-08-28 14:05:47 來源:腳本之家 閱讀:140 作者:只要你能好 欄目:移動開發

本文實例講述了Android popupWindow彈出窗體實現方法。分享給大家供大家參考,具體如下:

1. 建立popupwindow顯示的布局頁面(普通的view任意布局)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="80dip"
  android:background="@drawable/popup_yellow_window_bg"
  android:orientation="horizontal" >
  <TextView
      android:id="@+id/popupwindow_app_uninstall_text"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal"
      android:layout_marginBottom="5dip"
      android:layout_marginTop="5dip"
      android:drawableTop="@drawable/kn_malware_scan_deep_click"
      android:text="卸 載"/>
</LinearLayout>

2. activity中布局加載以及填充,建立popupwindow對象,設置相應參數或屬性

View contentView = View.inflate(getApplicationContext(), R.layout.popup_window, null);
LinearLayout ll_uninstall = (LinearLayout) contentView.findViewById(R.id.ll_uninstall);
//設置popupwindow內布局組件的監聽(與其他組件相似)
MyOnClickListener l = new MyOnClickListener(position);
ll_uninstall.setOnClickListener(l);
PopupWindow mPopupWindow = new PopupWindow(contentView, ViewGroup.LayoutParams.WRAP_CONTENT, 70);
int[] arrayOfInt = new int[2];
view.getLocationInWindow(arrayOfInt);
int x = arrayOfInt[0] + 60;
int y = arrayOfInt[1];
//1 指定popupwindow的背景  2 popupwindow能夠獲得焦點
mPopupWindow.setBackgroundDrawable(new BitmapDrawable());
mPopupWindow.setFocusable(true);
mPopupWindow.showAtLocation(view, Gravity.LEFT|Gravity.TOP, x, y);
//在合適位置取消popupwindow顯示
mPopupWindow.dismiss();

更多關于Android相關內容感興趣的讀者可查看本站專題:《Android窗口相關操作技巧總結》、《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

向AI問一下細節

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

AI

深圳市| 邹城市| 长阳| 多伦县| 福州市| 巴东县| 招远市| 新邵县| 余江县| 淮南市| 南和县| 乐至县| 建宁县| 肃南| 子长县| 张家港市| 时尚| 嵊州市| 白玉县| 壶关县| 萍乡市| 壤塘县| 晋中市| 伊金霍洛旗| 获嘉县| 盐亭县| 宁南县| 阳春市| 马公市| 甘谷县| 柳江县| 西华县| 和林格尔县| 英吉沙县| 巫溪县| 长沙市| 孙吴县| 塘沽区| 莫力| 西安市| 莱阳市|