我從相機錄製視頻,現在我想全屏播放它。但它不適合我。在Android的全屏幕播放視頻
我在試這個代碼。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_height="match_parent">
<VideoView
android:id="@+id/camVideoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"/>
</RelativeLayout>
左右兩側都有一些黑色空間。有沒有什麼方法可以在不丟失寬高比的情況下全屏播放視頻。也許像image centerCrop
或其他東西。
我讀了很多關於stackoverflow的問題,但沒有人解決我的問題。
我看到很多其他玩家在我的設備中全屏播放相同的視頻。
我該怎麼做?