简单的popupwindow提示框

 Popupwindow大家肯定都特别熟悉了 像一般的提示框的话我们会用Dialog来做 但是随着设计要求的不断提高,App中各式各样的提示框都有,很明显普通的Dialog实现起来就比较吃力了 所以用Popupwindow来实现是最好不过了 ,于是我也自己写了一个popupwindow弹出的一个方法,代码量少简单灵活 先看一下效果图

简单的popupwindow提示框_第1张图片

大致效果就是这样 当然你也可以将layout中的布局换成自己的布局 接下来是代码

  private void ejectPopup() {

        View parent = ((ViewGroup) this.findViewById(android.R.id.content)).getChildAt(0);
        View popView = View.inflate(this, R.layout.details_share, null);


        int width = getResources().getDisplayMetrics().widthPixels;
        int height = getResources().getDisplayMetrics().heightPixels;
//        int i = height /5*2;
         popWindow = new PopupWindow(popView, width, ViewGroup.LayoutParams.WRAP_CONTENT);
        popWindow.setAnimationStyle(R.style.Search_PopupWindowAnimation);
        popWindow.setFocusable(true);
        popWindow.setOutsideTouchable(false);// 设置同意在外点击消失
        ColorDrawable dw = new ColorDrawable(0x30000000);
        popWindow.setBackgroundDrawable(dw);
        popWindow.showAtLocation(parent, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, 0);
        popWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);//被home键挡住
        //给popup中的按钮做监听
        WindowManager.LayoutParams lp = getWindow().getAttributes();
        lp.alpha = (float) 0.7; //0.0-1.0
        getWindow().setAttributes(lp);
        popWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {
            @Override
            public void onDismiss() {
                WindowManager.LayoutParams lp = getWindow().getAttributes();
                lp.alpha = (float) 1; //0.0-1.0
                getWindow().setAttributes(lp);
            }
        });
}
这个就是调用的方法  背景变暗可以通过这段代码来实现

 popWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {
            @Override
            public void onDismiss() {
                WindowManager.LayoutParams lp = getWindow().getAttributes();
                lp.alpha = (float) 1; //0.0-1.0
                getWindow().setAttributes(lp);
            }
        });
当让也可以让ui妹子给你切一个透明的背景图片 

最后是layout中的代码




    

        
    

    
    
    
        

            

            
        
        

            

            
        
        

            

            
        
        

            

            
        

        

            

            
        

    
    
    
        
    
ok  没了

你可能感兴趣的:(简单的popupwindow提示框)