android – 如何通过可编程方式将屏幕旋转到横向(或纵向)?

前端之家收集整理的这篇文章主要介绍了android – 如何通过可编程方式将屏幕旋转到横向(或纵向)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何通过可编程方式将屏幕旋转为横向(或纵向)?
我试图在用户旋转屏幕时使其独立.

这可能吗?

提前致谢.

解决方法

您可以尝试下面的示例…
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
    // You can set the value initially by
    // ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED. Once set it
    // retains it's value. The View will be rendered in the specified
    // orientation using the code below.
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}

猜你在找的Android相关文章