使SimpleExoPlayerView适应旋转的相对布局

时间:2018-09-10 11:02:01

标签: android android-relativelayout exoplayer

如何将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度?

0 个答案:

没有答案