android的Dev Guide中说Dialog不能去掉title部分.实际上是可以去除的.方法如下:


Dialog d = new Dialog(context);

d.requestWindowFeature(Window.FEATURE_NO_TITLE);


搞定