我尝试在CollapsingToolbarLayout中实现YouTube播放器。我面临的问题是视频每秒都有日志消息停止
W / YouTubeAndroidPlayerAPI:YouTube视频播放因播放器顶部未经授权的覆盖而停止。 YouTube.support.v7.widget.Toolbar 掩盖了YouTubePlayerView
这是我的布局:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.olearis.drake1804.muzeek.presentation.view.screen.genre.GenreDetailsActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="250dp"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:toolbarId="@+id/toolbar">
<FrameLayout
android:id="@+id/youtubeFrameContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#0D4C5C"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax">
<ImageView
android:id="@+id/youtubePreview"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<View
android:id="@+id/tint"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#4D000000" />
<TextView
android:id="@+id/titleVideo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:textColor="@android:color/white"
android:textSize="18sp"
android:textStyle="bold" />
<ImageView
android:id="@+id/youtubeStart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="24dp"
app:srcCompat="@drawable/ic_play_arrow_black_24dp" />
</FrameLayout>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_genre_details" />
答案 0 :(得分:0)
在 CollapsingToolbarLayout
内添加标题并在视频开始播放时隐藏它。