如何隐藏操作栏并将视频视图设置为全屏

时间:2018-03-26 10:42:54

标签: android android-actionbar android-mediaplayer android-orientation android-videoview

我正在尝试制作视频播放器。我的问题是当方向改变时,videoView不适合整个屏幕,我的操作栏也不会隐藏......

这是我的代码。

RowClick.java

public class RowClick extends AppCompatActivity {
VideoView videoView;
MediaController mediaController;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
        getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
        OrientationEventListener orientationEventListener = new OrientationEventListener(this) {
            @Override
            public void onOrientationChanged(int orientation) {
                if (orientation == Configuration.ORIENTATION_PORTRAIT) {
                    getSupportActionBar().show();
                } else if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
                    getSupportActionBar().hide();
                }
            }
        };

        if (orientationEventListener.canDetectOrientation()) {
            orientationEventListener.enable();
        }

        setContentView(R.layout.activity_row_click);
        videoView = findViewById(R.id.video);
        mediaController = new MediaController(this);
        StorageReference storageReference = FirebaseStorage.getInstance().getReference().child("video/-L8Vf_Xa6PBhyqbEzlif");
        storageReference.getDownloadUrl().addOnSuccessListener(new OnSuccessListener<Uri>() {
            @Override
            public void onSuccess(Uri uri) {
                videoView.setVideoURI(uri);
                videoView.requestFocus();

            }
        });

        mediaController.setAnchorView(videoView);
        videoView.setMediaController(mediaController);
        videoView.start();
    }
}

activity_row_click.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/layout"
    tools:context="com.mgb.sdakaraoke.RowClick">

    <VideoView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/video"
        />

</RelativeLayout>

的AndroidManifest.xml

 <activity
            android:name=".RowClick"
            android:configChanges="orientation|screenSize">
        </activity>

我的目标是当方向等于横向时,操作栏必须隐藏,并且必须将视频视图设置为全屏。

请帮助我了解如何实现这一目标。

以下是Lanscape模式的屏幕截图,需要根据我的目标正确更改。

landscape

2 个答案:

答案 0 :(得分:1)

在styles.xml中添加

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="android:windowTranslucentStatus">true</item>
</style>

将其应用于清单中的活动:

<activity
        android:name=".RowClick"
        android:theme="@style/AppTheme.NoActionBar"
        android:configChanges="orientation|screenSize">
</activity>

这也会使您的状态栏半透明。

你也可以在你的java文件代码中尝试下面。

@Override
public void onConfigurationChanged(Configuration newConfig) {
 super.onConfigurationChanged(newConfig);
 if(newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
      getActionBar().hide();
 } else {
      getActionBar().show();
 }
}

if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
  getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
else {
  getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
}

答案 1 :(得分:0)

在清单中,您将在活动标记下包含以下内容:

android:theme="@style/AppTheme.NoActionBar"

这将删除操作栏。 至于横向全屏,请在此处尝试:answer from other user