Android 自定义布局对话框避免全屏的设置

需要在创建过程中设置Layout宽高为 LayoutParams.WRAP_CONTENT

public class CustomizedDialog extends Dialog 

{

........

    @Override  

    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.mydialog);
        getWindow().setLayout(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);//需要添加的语句 
    }

..........

}

你可能感兴趣的:(android,布局,对话框)