我是android開發的noob,當我嘗試播放視頻時,我的webview會調整自己的大小。爲了使web視圖播放視頻我不得不添加的代碼行:爲什麼我的Webview會自動調整大小?
youtube.getSettings().setPluginState(PluginState.ON);
在我的佈局,我有我的網頁視圖列表視圖上方。但是,現在當webview播放視頻時,它變成了全屏並覆蓋了listview。這在我添加上面的行之前沒有發生。如何阻止我的webview自行調整大小?任何幫助是極大的讚賞?
這裏是我的佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/LLvideos" >
<WebView
android:id="@+id/webViewyoutube"
android:layout_width="match_parent"
android:layout_height="350dp" >
</WebView>
<!-- List view -->
<ListView
android:id="@+id/videolist"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:divider="#00000000"
android:dividerHeight="0dp" >
</ListView>
這裏是我的視頻鏈接
youtube.loadUrl("http://link.brightcove.com/services/player/bcpid1683318714001?bckey=AQ~~,AAAAC59qSJk~,vyxcsD3OtBPHZ2UIrFX2-wdCLTYNyMNn&bclid=1644543007001&bctid=1858951133001");
感謝您的回覆,但沒有奏效。它也表示LayoutAlgorithm已被棄用。 –