CarGuo / GSYVideoPlayer

视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,16k page size,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。
https://juejin.cn/user/817692379985752/posts
Apache License 2.0
20.23k stars 4.19k forks source link

全屏无效 #1524

Closed Leonw2229 closed 6 years ago

Leonw2229 commented 6 years ago

问题描述:

在CoordinatorLayout -> AppBarLayout -> CollapsingToolbarLayout 中,点击全屏无效。。

问题机型/系统:

所有

问题代码:


    <android.support.design.widget.AppBarLayout
        android:id="@+id/viewAppBar"
        android:elevation="3dp"
        android:background="@color/color_gray"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/viewCollapsing"
            android:layout_width="match_parent"
            app:layout_scrollFlags="scroll|snap|exitUntilCollapsed"
            android:layout_height="wrap_content">

            <ImageView
                app:layout_collapseMode="parallax"
                android:id="@+id/viewImage"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="fitXY"
                android:src="@drawable/banner2" />

            <com.shuyu.gsyvideoplayer.video.StandardGSYVideoPlayer
                android:id="@+id/viewPlayer"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_collapseMode="pin"
                android:visibility="gone" />

            <android.support.v7.widget.Toolbar
                android:theme="@style/ToolbarTheme"
                android:id="@+id/toolBar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/transparent"
                android:gravity="center_vertical"
                android:paddingTop="@dimen/toolBarPaddingTop"
                app:contentInsetStart="0dp"
                app:layout_collapseMode="pin" />

        </android.support.design.widget.CollapsingToolbarLayout>

        <com.flyco.tablayout.SlidingTabLayout
            android:id="@+id/viewSlidingTab"
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:background="@android:color/white"
            app:tl_indicator_color="@color/colorAccent"
            app:tl_indicator_height="2dp"
            app:tl_tab_space_equal="true"
            app:tl_textSelectColor="@color/colorAccent"
            app:tl_textUnselectColor="@android:color/darker_gray" />

    </android.support.design.widget.AppBarLayout>
Leonw2229 commented 6 years ago

可能是我设置有问题,需要在manifest明确指定可旋转才可以吗,目前用到播放器界面的都不可全屏

CarGuo commented 6 years ago

Demo中有: https://github.com/CarGuo/GSYVideoPlayer/blob/master/app/src/main/java/com/example/gsyvideoplayer/ScrollingActivity.java