为AlertDialog添加View

在为AlertDialog添加View的时候,应该这样来

mDialog = new AlertDialog.Builder(MainActivity.this).setView(view).create() ;

不然会报错! 

如果是先new 了一个mDialog出来的再去调用setView或addContentView的话,会报错!

可以总结成一句话,就是在create之前setView。

你可能感兴趣的:(android)