如何在单击按钮时将视频旋转到横向模式?

How to rotate the video to landscape mode on button click?

我在 VideoView 中放置了视频和一个按钮。我希望当单击按钮时,视频旋转到横向模式并适合设备屏幕! 提前致谢。

您可以只设置屏幕方向。

Button button = (Button) findViewById(R.id.button);
button.setOnClickListener(new Button.OnClickListener(){
    @Override
    public void onClick(View arg0) {
           //This line will set the orientation to landscape. 
          setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    }
}

您只需要使用来自 ACTIVITYINFO class 的值。

资源

活动信息:https://developer.android.com/reference/android/content/pm/ActivityInfo.html#SCREEN_ORIENTATION_LANDSCAPE

横向:https://developer.android.com/reference/android/content/pm/ActivityInfo.html#SCREEN_ORIENTATION_LANDSCAPE

纵向:https://developer.android.com/reference/android/content/pm/ActivityInfo.html#SCREEN_ORIENTATION_PORTRAIT