gpt4 book ai didi

android - 在 Android Webview 中播放视频

转载 作者:行者123 更新时间:2023-11-29 21:15:07 27 4
gpt4 key购买 nike

我有一个线性布局的 webview 控件。我想在 vebview 控件中播放 html 视频。我试图在纵向模式下显示与屏幕相同的视频,并在横向模式下全屏显示。

这是我的 xml 布局:

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

<WebView
android:id="@+id/myBrowser"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
/>

</LinearLayout>

您可以在下面找到有关问题的屏幕截图: enter image description here

enter image description here

最佳答案

使用下面的代码控制webView

WebSettings settings = webView.getSettings();
settings.setUseWideViewPort(true);
settings.setLoadWithOverviewMode(true);

同时添加这段代码

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

不要在 requestFeature() 之前调用 setContentView()

关于android - 在 Android Webview 中播放视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21614942/

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