修改系统默认屏幕显示方向横屏或竖屏

在源码frameworks\base\core\java\android\view目录下的windowmanager.java里。




/**
* Specific orientation value for a window.
* May be any of the same values allowed
* for {@link android.content.pm.ActivityInfo#screenOrientation}.
* If not set, a default value of
* {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}
* will be used.
*/
public int screenOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;




把这个红色的改为LANDSCAPE或PORTRAIT!!!
【修改系统默认屏幕显示方向横屏或竖屏】就行了。

    推荐阅读