我在android中的youtube播放器 View 有问题。
播放一段时间后,它显示波纹管错误,然后突然停止。
并显示波纹管错误。
YouTube video playback stopped because the player's view is not visible.
The view com.android.internal.policy.impl.PhoneWindow$DecorView
{36d050c2 I.E..... R.....ID 0,0-540,960} has visibility "INVISIBLE".
告诉我该怎么办。
我的 Activity 代码在这里。
youTubePlayerView = (YouTubePlayerView) findViewById(R.id.youtube_player);
youTubePlayerView.initialize(GOOGLE_API_KEY, this);
@Override
public void onInitializationSuccess(YouTubePlayer.Provider provider,
YouTubePlayer youTubePlayer, boolean wasRestored) {
myYouTubePlayer = youTubePlayer;
// Change play style
youTubePlayer.setPlayerStyle(YouTubePlayer.PlayerStyle.DEFAULT);
youTubePlayer
.addFullscreenControlFlag(YouTubePlayer.FULLSCREEN_FLAG_CONTROL_SYSTEM_UI);
youTubePlayer.setPlayerStateChangeListener(this);
youTubePlayer.setPlaybackEventListener(this);
youTubePlayer.loadVideo("wKJ9KzGQq0w");
}
@Override
public void onInitializationFailure(YouTubePlayer.Provider provider,
YouTubeInitializationResult errorReason) {
if (errorReason.isUserRecoverableError()) {
errorReason.getErrorDialog(this, RECOVERY_DIALOG_REQUEST).show();
} else {
String errorMessage = String.format(
"There was an error initializing the YouTubePlayer (%1$s)",
errorReason.toString());
Toast.makeText(this, errorMessage, Toast.LENGTH_LONG).show();
}
}
我的XML文件代码在这里。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_FullScreen"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000" >
<com.google.android.youtube.player.YouTubePlayerView
android:id="@+id/youtube_player"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/rl_CurrentVideoDetails"
android:layout_below="@+id/rl_Heading"
android:layout_toStartOf="@+id/rl_ChannelChange"
android:background="#000" />
<RelativeLayout
android:id="@+id/rl_Heading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<ImageView
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="12dp"
android:contentDescription="@null"
android:padding="8dp" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/rl_ChannelChange"
android:layout_width="50dp"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:background="@color/transparent_background_black"
android:gravity="center_horizontal" >
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_above="@+id/ll_ChNo"
android:layout_marginBottom="16dp"
android:contentDescription="@null"
android:padding="8dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:gravity="center"
android:padding="4dp"
android:text="Ch."
android:textSize="16sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:gravity="center"
android:padding="4dp"
android:text="123"
android:textSize="16sp" />
</LinearLayout>
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_below="@+id/ll_ChNo"
android:layout_marginTop="16dp"
android:contentDescription="@null"
android:padding="8dp"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/rl_CurrentVideoDetails"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerVertical="true"
android:background="@color/transparent_background_black"
android:paddingStart="12dp" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="6dp"
android:singleLine="true"
android:textStyle="bold" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_CurrentVideoName"
android:orientation="horizontal"
android:padding="6dp" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:textAllCaps="true"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="| Ch. "
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="4dp"
android:singleLine="true"
android:textAllCaps="true" />
</LinearLayout>
<ImageView
android:id="@+id/iv_NormalScreen"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:contentDescription="@null"
android:padding="10dp" />
</RelativeLayout>
最佳答案
昨晚我的应用程序遇到了同样的问题,最终找到了解决方案(至少对我来说)。看来我的应用程序中总有一个问题,我无意中多次向我的YoutubePlayerActivity启动相同的意图。
以前,我自己并未注意到这一点-但是,最近的Youtube更新一定增加了限制或更改了其工作方式,因为我随后收到了此错误。
我遍历代码,发现添加片段时,它正在重新调用每个片段的onCreateView。对于所有添加的三个片段的含义,我最终三次调用了意图。
希望这会有所帮助。