我正在一個應用程序,我有視頻堆疊在一個圖像的頂部。你可以在附圖中看到。爲什麼視頻播放器會像照片一樣控制設備底部的默認設置?如果可能的話,我想把它們移動到頂部。我對這個屏幕布局是:視頻控件默認設備底部
<?xml version="1.0" encoding="UTF-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/mobile_vforum_bg"
>
<VideoView
android:id="@+id/vidPlayer"
android:layout_width="320dip"
android:layout_height="240dip">
</VideoView>
<WebView
android:id="@+id/slideHolder"
android:layout_width="320dip"
android:layout_height="240dip"
android:layout_gravity="bottom">
</WebView>
<ListView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/slideList"
android:background="#000000">
</ListView>
</FrameLayout>
人知道,如果我可以在視頻的頂部移動視頻控件?
根據'VideoView'的文檔...它「負責從視頻計算其測量值,以便它可以在任何佈局管理器中使用」。而不是在'dip'中設置寬度/高度,而只是簡單地使用'wrap_content'來嘗試? – Squonk
我嘗試設置VideoView寬度/高度來包裝內容,並獲得相同的行爲。這將是一個愚蠢的一天googling我可以告訴 – Ronnie