Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android-PopupWindow彈出窗口 - 隨心

android-PopupWindow彈出窗口 - 隨心

編輯:關於Android編程

Android的對話框有兩種:PopupWindow和AlertDialog。它們的不同點在於:
AlertDialog的位置固定,而PopupWindow的位置可以隨意
AlertDialog是非阻塞線程的,而PopupWindow是阻塞線程的
PopupWindow的位置按照有無偏移分,可以分為偏移和無偏移兩種;按照參照物的不同,可以分為相對於某個控件(Anchor錨)和相對於父控件。具體如下
showAsDropDown(View anchor):相對某個控件的位置(正左下方),無偏移
showAsDropDown(View anchor, int xoff, int yoff):相對某個控件的位置,有偏移
showAtLocation(View parent, int gravity, int x, int y):相對於父控件的位置(例如正中央Gravity.CENTER,下方Gravity.BOTTOM等),可以設置偏移或無偏移
不解釋之際上代碼

[java] 
LayoutInflater inflater = (LayoutInflater) DeliveryActivity.this.getSystemService(LAYOUT_INFLATER_SERVICE); 
View view = inflater.inflate(R.layout.popup_sms, null); 
 
LinearLayout popup_contact = (LinearLayout)view.findViewById(R.id.popup_contact); 
LinearLayout popup_input = (LinearLayout)view.findViewById(R.id.popup_input); 
popup_contact.setOnClickListener(DeliveryActivity.this); 
popup_input.setOnClickListener(DeliveryActivity.this); 
 
selectSMSPopup = new PopupWindow(view); 
selectSMSPopup.setWidth(WindowManager.LayoutParams.WRAP_CONTENT); 
selectSMSPopup.setHeight(WindowManager.LayoutParams.WRAP_CONTENT); 
// 必須設置,否則獲得焦點後頁面上其他地方點擊無響應 
selectSMSPopup.setBackgroundDrawable(new BitmapDrawable()); 
// 設置焦點,必須設置,否則listView無法響應 
selectSMSPopup.setFocusable(true); 
// 設置點擊其他地方 popupWindow消失 
selectSMSPopup.setOutsideTouchable(true); 
// 顯示在某個位置 
selectSMSPopup.showAsDropDown(LinearLayout

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved