如何将SimpleExoPlayerView
放在旋转的RelativeLayout
中?
这是代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/BackgroundPrimary"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/videocontainer"
android:layout_width="match_parent"
android:layout_height="0dp"
android:rotation="90"
android:layout_weight="1">
<com.google.android.exoplayer2.ui.SimpleExoPlayerView
android:id="@+id/player_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
app:resize_mode="fit"
app:surface_type="texture_view" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/Videobuttons"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageButton
android:id="@+id/videopause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/TRANSPARENT"
android:src="@android:drawable/ic_media_pause" />
<ImageButton
android:id="@+id/videoplay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/TRANSPARENT"
android:src="@android:drawable/ic_media_play"
android:visibility="gone" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
我们如何在{em> Android 中的旋转视图中容纳SimpleExoPlayerView
?
将旋转设置为0时,可以看到整个视频,但是如果将旋转设置为90,则看不到视频的边缘。
如何在RelativeLayout
内将视频旋转90度?