about android screen

竖屏: 

android:screenOrientation="portrait"

横屏:

android:screenOrientation="landscape"

全屏:

this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
			  WindowManager.LayoutParams.FLAG_FULLSCREEN);
requestWindowFeature(Window.FEATURE_NO_TITLE);

以下是Android SDK 截图:

about android screen_第1张图片


你可能感兴趣的:(about android screen)