如何通过可编程方式将屏幕旋转为横向(或纵向)? 我试图在用户旋转屏幕时使其独立。
有可能吗?
提前致谢。
答案 0 :(得分:10)
试试这个:
Activity.setRequestedOrientation()
使用以下参数:
ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE
ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
检查this以获取进一步的参考资料
答案 1 :(得分:6)
您可以尝试下面的示例...
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);
}