Activity的窗口大小,其本质仍是经过windowManager来操做,WindowManger将其做为一个window来控制大小android
WindowManager m = getWindowManager();
Display d = m.getDefaultDisplay();
android.view.WindowManager.LayoutParams p = getWindow().getAttributes();
p.height = (int)(d.getHeight() *0.8);
p.width = (int)(d.getWidth()*0.7);
p.dimAmount = 0.0f;
getWindow().setAttributes(p);get