0

我正在使用 Google Leanback 代码为 Amazon Fire TV 创建一个视频播放器应用程序(我知道它不是为 Fire TV 设计的,但我已经做了必要的工作以使其工作 - 除了这个)。我已经做到了,如果您通过按主页按钮退出应用程序,或者如果您暂停它,观看不同的视频,然后返回,则视频会从您停止的地方恢复。

但是,亚马逊拒绝了我的应用程序,因为如果您在视频播放时进行麦克风搜索然后返回,视频会重新开始而不是恢复。

我错过了什么?这是 PlayerActivity 中 startVideoPlayer() 和 onPause() 的代码:

private void startVideoPlayer() {
    Bundle bundle = getIntent().getExtras();
    mSelectedMovie = (Movie) getIntent().getSerializableExtra( VideoDetailsFragment.EXTRA_MOVIE );

    if( mSelectedMovie == null || TextUtils.isEmpty( mSelectedMovie.getVideoUrl() ) || bundle == null )
        return;

    mShouldStartPlayback = bundle.getBoolean( VideoDetailsFragment.EXTRA_SHOULD_AUTO_START, true );
    sprefs = PreferenceManager.getDefaultSharedPreferences(this);
    startPosition = sprefs.getInt(mSelectedMovie.getVideoUrl(), 0);
    mVideoView.setVideoPath( mSelectedMovie.getVideoUrl() );
    if ( mShouldStartPlayback ) {
        mPlaybackState = PlaybackState.PLAYING;
        updatePlayButton( mPlaybackState );
        if ( startPosition > 0 ) {
            mVideoView.seekTo( startPosition );
        }
        mVideoView.start();
        mPlayPause.requestFocus();
        startControllersTimer();
    } else {
        updatePlaybackLocation();
        mPlaybackState = PlaybackState.PAUSED;
        updatePlayButton( mPlaybackState );
    }
}

@Override
protected void onPause() {
    super.onPause();
    if ( mSeekbarTimer != null ) {
        mSeekbarTimer.cancel();
        mSeekbarTimer = null;
    }
    if ( mControllersTimer != null ) {
        mControllersTimer.cancel();
    }
    mVideoView.pause();
    mPlaybackState = PlaybackState.PAUSED;
    updatePlayButton( mPlaybackState );
    SharedPreferences.Editor editor = sprefs.edit();
    editor.putInt(mSelectedMovie.getVideoUrl(), mVideoView.getCurrentPosition());
    editor.apply();
}
4

1 回答 1

0

我最终不得不在 onResume 中调用 startVideoPlayer,如下所示:

@Override
public void onResume() {
    super.onResume();
    startVideoPlayer();
}
于 2015-03-07T21:17:34.620 回答