使用Activity创建一个全局的弹窗

记录备忘

一、style
 
二、代码
        setContentView(R.layout.xxxxx)
        WindowManager.LayoutParams params = getWindow().getAttributes();
        params.width = ScreenUtils.getScreenWidth() * 4 / 5;
         ...根据需求定义..
        getWindow().setAttributes(params);

你可能感兴趣的:(使用Activity创建一个全局的弹窗)