Android - 用程序改变屏幕垂直或水平(旋屏)

android.view.IWindowManager windowService = android.view.IWindowManager.Stub.asInterface(android.os.ServiceManager.getService(”window”));

try
{
if (windowService.getOrientation() == 0)    //Orientation vertical
{
windowService.setOrientation(1);  //Orientation horizontal
Log.i(”info”, “orientation 1 “+windowService.getOrientation());
}
else
{
Log.i(”info”, “orientation 0 “+windowService.getOrientation());
}
}
catch (DeadObjectException e)
{
e.printStackTrace();
}

你可能感兴趣的:(Android - 用程序改变屏幕垂直或水平(旋屏))