本文實例講述了Android popupWindow彈出窗體實現(xiàn)方法。分享給大家供大家參考,具體如下:
創(chuàng)新互聯(lián)于2013年創(chuàng)立,先為浦城等服務(wù)建站,浦城等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為浦城企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
1. 建立popupwindow顯示的布局頁面(普通的view任意布局)
<?xml version="1.0" encoding="utf-8"?>
2. activity中布局加載以及填充,建立popupwindow對象,設(shè)置相應(yīng)參數(shù)或?qū)傩?/p>
View contentView = View.inflate(getApplicationContext(), R.layout.popup_window, null); LinearLayout ll_uninstall = (LinearLayout) contentView.findViewById(R.id.ll_uninstall); //設(shè)置popupwindow內(nèi)布局組件的監(jiān)聽(與其他組件相似) 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();
更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android窗口相關(guān)操作技巧總結(jié)》、《Android開發(fā)入門與進階教程》、《Android調(diào)試技巧與常見問題解決方法匯總》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)》
希望本文所述對大家Android程序設(shè)計有所幫助。