在Android Webview中播放视频

时间:2014-02-06 21:57:42

标签: android android-layout android-webview

我有一个线性布局的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

2 个答案:

答案 0 :(得分:2)

使用以下代码来控制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);

请勿在{{1​​}}之前致电setContentView()

答案 1 :(得分:0)

您可以尝试在HTML页面中指定:

<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">

在WebView上启用视口:

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