gpt4 book ai didi

android - Android 上的视频无法全屏显示

转载 作者:行者123 更新时间:2023-11-29 23:19:13 25 4
gpt4 key购买 nike

我希望我的视频 Activity 在视频开始时全屏显示,但它没有发生。以下是一些屏幕截图和运行此 Activity 的代码。:

public class InfoLentes extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);

setContentView(R.layout.infolentes);
}

public void sendMessage(View view) {

setContentView(R.layout.fullscreen);
VideoView VideoView = new VideoView(this);
getWindow().setFlags(
WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
VideoView.setMediaController(new MediaController(this));
Uri video = Uri.parse("android.resource://" + getPackageName() + "/"
+ R.raw.eyeprotect);
VideoView.setVideoURI(video);
setContentView(VideoView);
VideoView.start();

}

}

这是我的 fullscreem.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

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

</FrameLayout>

以及正在发生的事情的屏幕截图。:

enter image description here

我做错了什么?

编辑:

所以使用@Sheetal Kumar Maurya 的回答,我创建了另一个 Activity 并在 list 上使用了 android:theme="@style/AppTheme.NoActionBar",结果更好,但仍然不是真正的全屏。:

enter image description here

最佳答案

创建一个带有 NoActionbar 主题的 VideoPlayer Activity 。

<activity
android:name=".VideoPlayerActivity"
android:theme="@style/AppTheme.NoActionBar" />

在 onCreate 部分添加以下内容:

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);

现在将此 Activity 用作全屏播放器并尽情享受。

关于android - Android 上的视频无法全屏显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54714842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com