當前位置: 首頁>>代碼示例>>Java>>正文


Java PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN屬性代碼示例

本文整理匯總了Java中android.support.v4.media.session.PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN屬性的典型用法代碼示例。如果您正苦於以下問題:Java PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN屬性的具體用法?Java PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN怎麽用?Java PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在android.support.v4.media.session.PlaybackStateCompat的用法示例。


在下文中一共展示了PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: updatePlaybackState

/**
 * Update the current media player state, optionally showing an error message.
 */
public void updatePlaybackState() {
    long position = PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN;
    if (mPlayback != null ) {
        position = mPlayback.getCurrentPosition();
    }
    long actions =
            PlaybackStateCompat.ACTION_PLAY_PAUSE |
            PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS |
            PlaybackStateCompat.ACTION_SKIP_TO_NEXT;

    if (mPlayback != null && mPlayback.isPlaying()) {
        actions |= PlaybackStateCompat.ACTION_PAUSE;
    } else {
        actions |= PlaybackStateCompat.ACTION_PLAY;
    }

    int state = mPlayback.getState();

    //noinspection ResourceType
    PlaybackStateCompat.Builder stateBuilder = new PlaybackStateCompat.Builder()
            .setActions(actions)
            .setState(state, position, 1.0f, SystemClock.elapsedRealtime());

    mMediaSession.setPlaybackState(stateBuilder.build());

    Intent intent = new Intent("change-playback-state-event");
    intent.putExtra("state", state);
    LocalBroadcastManager.getInstance(getApplicationContext()).sendBroadcast(intent);
}
 
開發者ID:AllThatSeries,項目名稱:react-native-streaming-audio-player,代碼行數:32,代碼來源:AudioPlayerService.java

示例2: updatePlaybackState

public void updatePlaybackState(int errorCode, String errorMsg) {
        Log.d(TAG, "updatePlaybackState, playback state = " + mPlayback.getState());
        long position = PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN;
        if (mPlayback != null && mPlayback.isConnected()) {
            position = mPlayback.getCurrentStreamPosition();
        }

        long playbackActions = PlaybackStateCompat.ACTION_PLAY
                | PlaybackStateCompat.ACTION_PLAY_FROM_MEDIA_ID;

        if (mPlayback.isPlaying()) {
            playbackActions |= PlaybackStateCompat.ACTION_PAUSE;
        }

        PlaybackStateCompat.Builder builder = new PlaybackStateCompat.Builder().setActions(playbackActions);

        int state = mPlayback.getState();

        if (errorCode != -1 && errorMsg != null) {
            builder.setErrorMessage(errorCode, errorMsg);
            state = PlaybackStateCompat.STATE_ERROR;
        }

        builder.setState(state, position, SystemClock.elapsedRealtime());

         MediaSessionCompat.QueueItem currentMedia = mQueueManager.getCurrentMedia();
        if (currentMedia != null) {
            builder.setActiveQueueItemId(currentMedia.getQueueId());
        }

//        mSession.setPlaybackState(builder.build());

        mServiceCallback.onPlaybackStateUpdate(builder.build());

//        if (state == PlaybackStateCompat.STATE_PLAYING ||
//                state == PlaybackStateCompat.STATE_PAUSED) {
//            mServiceCallback.onHandleNotification();
//        }

//
    }
 
開發者ID:Jaysaw,項目名稱:NovaMusicPlayer,代碼行數:41,代碼來源:PlaybackManager.java


注:本文中的android.support.v4.media.session.PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。