我具有被設置像這樣的VideoView:VideoView匹配父高度和保持寬高比
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/player"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<VideoView
android:id="@+id/video"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:layout_centerVertical="true" />
<ProgressBar
android:id="@+id/loader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</RelativeLayout>
但VideoView父容器的寬度相匹配,並且根據當時的高度設定已加載電影的寬高比。
我想做的只是相反的,我希望VideoView匹配父級的高度,同時保持縱橫比不變,視頻將被剪裁在兩側。
我設法伸展VideoView填充父級,但然後長寬比不保留。
另一件事是,我加入的MediaController到VideoView這樣的:
MediaController controllers = new MediaController(this) {
@Override
public void hide() {
if (state != State.Hidden) {
this.show();
}
else {
super.hide();
}
}
};
controllers.setAnchorView(videoView);
videoView.setMediaController(controllers);
videoView.setOnPreparedListener(new OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mediaPlayer) {
controllers.show();
}
});
這個偉大的工程,以及控制器永遠留在,但控制器的高度不被考慮在內時,計算放置視頻的位置(因爲它是垂直居中的)。
我的兩個問題,然後是:
- 如何讓VideoView符合父母的高度但保持寬高比?
- 我該如何讓VideoView考慮它的控制器的高度?
謝謝。
你說的是WebView還是VideoView?你改變了一半。 –