Show a PopupWindow centralized

前端 未结 2 1210
孤城傲影
孤城傲影 2020-12-08 06:44

I have some popups on my app, it\'s fullscreen and the following code:

    content.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
            La         


        
2条回答
  •  广开言路
    2020-12-08 06:50

            View popupView = layoutInflater.inflate(R.layout.index_popviewxml,
                    null);
    
    
            final PopupWindow popupWindow = new PopupWindow(popupView,
                    LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT, true);
    
    
    
            popupWindow.setTouchable(true);
            popupWindow.setFocusable(true);
    
            popupWindow.showAtLocation(popupView, Gravity.CENTER, 0, 0);
    

提交回复
热议问题