如何禁用 jwplayer 库中的自动旋转?

How to disable auto-rotation in jwplayer library?

如何在 jwplayer 库中禁用自动旋转?

fragment.setFullscreenOnDeviceRotate(假);<br> setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);<br> android:screenOrientation="landscape" android:configChanges="keyboard|keyboardHidden|orientation|screenSize"/>

不工作。

我想从 Activity 开始,方向是横向,包括 jwplayer

Video

尝试将 android:screenOrientation="portrait" 添加到清单中的 <activity> 元素。

您能否向我们展示您的代码的某些部分以帮助我们解决您的问题?

Add Screen orientation in AndroidManifest.xml

<activity
        android:name=".GalleryAlbumsActivity"
        android:label="@string/title_activity_image_gallery_albums"
        android:screenOrientation="portrait"
        android:theme="@style/AppTheme.NoActionBar" />

我遇到了同样的问题。 我执行了此处描述的所有步骤,但没有任何效果,但我找到了解决方案:

fragment.setFullscreenOnDeviceRotate(true)
playerView = fragment.player
playerView.setFullscreen(playerView.fullscreen, false)