android的popupwindow點擊返回按鈕關閉

來源:互聯網
上載者:User

今天想實現點擊Popupwindow的外邊不消失,點擊返回鍵popupwindow自動關閉的效果,網上找了找,發現沒有完整的,零碎的而且不準確,於是自己琢磨了一下,試了試效果。以下是實現效果的代碼


[java]
View keyboardView = LayoutInflater.from(activity).inflate(R.layout.random_keyboard, null);  
 popupWindow = new PopupWindow(keyboardView,LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,false); 
//設定點擊視窗外邊視窗消失   
 popupWindow.setOutsideTouchable(false);  
   // 設定此參數獲得焦點,否則無法點擊   
 popupWindow.setFocusable(true); 
  
// popupWindow.setBackgroundDrawable(new BitmapDrawable());  //comment by danielinbiti,如果添加了這行,那麼標註1和標註2那兩行不用加,加上這行的效果是點popupwindow的外邊也能關閉  
 keyboardView.setFocusable(true);//comment by danielinbiti,設定view能夠接聽事件,標註1  
 keyboardView.setFocusableInTouchMode(true); //comment by danielinbiti,設定view能夠接聽事件 標註2  
 keyboardView.setOnKeyListener(new OnKeyListener(){ 
    @Override 
    public boolean onKey(View arg0, int arg1, KeyEvent arg2) { 
            if (arg1 == KeyEvent.KEYCODE_BACK){ 
            if(popupWindow != null) { 
                close(); 
                }  
            } 
             return false;  
    } 
 }); 

View keyboardView = LayoutInflater.from(activity).inflate(R.layout.random_keyboard, null);
 popupWindow = new PopupWindow(keyboardView,LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT,false);
//設定點擊視窗外邊視窗消失
 popupWindow.setOutsideTouchable(false);
   // 設定此參數獲得焦點,否則無法點擊
 popupWindow.setFocusable(true);
 
// popupWindow.setBackgroundDrawable(new BitmapDrawable());  //comment by danielinbiti,如果添加了這行,那麼標註1和標註2那兩行不用加,加上這行的效果是點popupwindow的外邊也能關閉
 keyboardView.setFocusable(true);//comment by danielinbiti,設定view能夠接聽事件,標註1
 keyboardView.setFocusableInTouchMode(true); //comment by danielinbiti,設定view能夠接聽事件 標註2
 keyboardView.setOnKeyListener(new OnKeyListener(){
 @Override
 public boolean onKey(View arg0, int arg1, KeyEvent arg2) {
       if (arg1 == KeyEvent.KEYCODE_BACK){
        if(popupWindow != null) {
         close();
        }
       }
        return false;
 }
 });

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.