本文整理匯總了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);
}
示例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();
// }
//
}