Home
last modified time | relevance | path

Searched refs:PlaybackStateCompat (Results 1 – 25 of 69) sorted by relevance

123

/frameworks/support/media/version-compat-tests/previous/client/src/androidTest/java/android/support/mediacompat/client/
DPlaybackStateCompatTest.java28 import android.support.v4.media.session.PlaybackStateCompat;
44 private static final long TEST_ACTIONS = PlaybackStateCompat.ACTION_PLAY
45 | PlaybackStateCompat.ACTION_STOP | PlaybackStateCompat.ACTION_SEEK_TO;
52 PlaybackStateCompat.ERROR_CODE_AUTHENTICATION_EXPIRED;
67 PlaybackStateCompat state = new PlaybackStateCompat.Builder().build(); in testBuilder()
69 assertEquals(new ArrayList<PlaybackStateCompat.CustomAction>(), state.getCustomActions()); in testBuilder()
97 PlaybackStateCompat state = new PlaybackStateCompat.Builder() in testBuilder_setterMethods()
98 .setState(PlaybackStateCompat.STATE_PLAYING, TEST_POSITION, TEST_PLAYBACK_SPEED) in testBuilder_setterMethods()
105 assertEquals(PlaybackStateCompat.STATE_PLAYING, state.getState()); in testBuilder_setterMethods()
123 PlaybackStateCompat state = new PlaybackStateCompat.Builder() in testBuilder_setStateWithUpdateTime()
[all …]
/frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/android/support/mediacompat/client/
DPlaybackStateCompatTest.java28 import android.support.v4.media.session.PlaybackStateCompat;
44 private static final long TEST_ACTIONS = PlaybackStateCompat.ACTION_PLAY
45 | PlaybackStateCompat.ACTION_STOP | PlaybackStateCompat.ACTION_SEEK_TO;
52 PlaybackStateCompat.ERROR_CODE_AUTHENTICATION_EXPIRED;
67 PlaybackStateCompat state = new PlaybackStateCompat.Builder().build(); in testBuilder()
69 assertEquals(new ArrayList<PlaybackStateCompat.CustomAction>(), state.getCustomActions()); in testBuilder()
97 PlaybackStateCompat state = new PlaybackStateCompat.Builder() in testBuilder_setterMethods()
98 .setState(PlaybackStateCompat.STATE_PLAYING, TEST_POSITION, TEST_PLAYBACK_SPEED) in testBuilder_setterMethods()
105 assertEquals(PlaybackStateCompat.STATE_PLAYING, state.getState()); in testBuilder_setterMethods()
123 PlaybackStateCompat state = new PlaybackStateCompat.Builder() in testBuilder_setStateWithUpdateTime()
[all …]
/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
DMediaSessionService.java33 import android.support.v4.media.session.PlaybackStateCompat;
128 private int mShuffleMode = PlaybackStateCompat.SHUFFLE_MODE_NONE;
178 PlaybackStateCompat.STATE_STOPPED).build());
280 PlaybackStateCompat.Builder ret = createPlaybackStateBuilder( in setMediaList()
281 PlaybackStateCompat.STATE_ERROR); in setMediaList()
282 ret.setErrorMessage(PlaybackStateCompat.ERROR_CODE_APP_ERROR, in setMediaList()
329 PlaybackStateCompat.STATE_NONE).build()); in initializePlayer()
351 PlaybackStateCompat.STATE_PAUSED).build()); in initializePlayer()
360 PlaybackStateCompat.Builder builder = createPlaybackStateBuilder( in initializePlayer()
361 PlaybackStateCompat.STATE_ERROR); in initializePlayer()
[all …]
DPlaybackTransportControlGlueSample.java25 import android.support.v4.media.session.PlaybackStateCompat;
332 supportedActions |= PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS; in getPlaybackStateActions()
334 supportedActions |= PlaybackStateCompat.ACTION_SKIP_TO_NEXT; in getPlaybackStateActions()
336 supportedActions |= PlaybackStateCompat.ACTION_REWIND; in getPlaybackStateActions()
338 supportedActions |= PlaybackStateCompat.ACTION_FAST_FORWARD; in getPlaybackStateActions()
340 supportedActions |= PlaybackStateCompat.ACTION_PLAY_PAUSE; in getPlaybackStateActions()
342 supportedActions |= PlaybackStateCompat.ACTION_SET_REPEAT_MODE; in getPlaybackStateActions()
344 supportedActions |= PlaybackStateCompat.ACTION_SET_SHUFFLE_MODE; in getPlaybackStateActions()
354 private PlaybackStateCompat createPlaybackStateBasedOnAdapterState() { in createPlaybackStateBasedOnAdapterState()
356 PlaybackStateCompat.Builder playbackStateCompatBuilder = new PlaybackStateCompat.Builder(); in createPlaybackStateBasedOnAdapterState()
[all …]
/frameworks/support/leanback/src/main/java/androidx/leanback/media/
DMediaControllerAdapter.java34 import android.support.v4.media.session.PlaybackStateCompat;
69 public void onPlaybackStateChanged(PlaybackStateCompat state) {
70 if (mIsBuffering && state.getState() != PlaybackStateCompat.STATE_BUFFERING) {
75 if (state.getState() == PlaybackStateCompat.STATE_NONE) {
81 } else if (state.getState() == PlaybackStateCompat.STATE_STOPPED) {
86 } else if (state.getState() == PlaybackStateCompat.STATE_PAUSED) {
89 } else if (state.getState() == PlaybackStateCompat.STATE_PLAYING) {
92 } else if (state.getState() == PlaybackStateCompat.STATE_BUFFERING) {
96 } else if (state.getState() == PlaybackStateCompat.STATE_ERROR) {
105 } else if (state.getState() == PlaybackStateCompat.STATE_FAST_FORWARDING) {
[all …]
DMediaControllerGlue.java26 import android.support.v4.media.session.PlaybackStateCompat;
48 public void onPlaybackStateChanged(PlaybackStateCompat state) {
117 return mMediaController.getPlaybackState().getState() == PlaybackStateCompat.STATE_PLAYING; in isMediaPlaying()
177 if ((actions & PlaybackStateCompat.ACTION_PLAY_PAUSE) != 0) { in getSupportedActions()
180 if ((actions & PlaybackStateCompat.ACTION_SKIP_TO_NEXT) != 0) { in getSupportedActions()
183 if ((actions & PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS) != 0) { in getSupportedActions()
186 if ((actions & PlaybackStateCompat.ACTION_FAST_FORWARD) != 0) { in getSupportedActions()
189 if ((actions & PlaybackStateCompat.ACTION_REWIND) != 0) { in getSupportedActions()
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
DPlayer.java24 import android.support.v4.media.session.PlaybackStateCompat;
48 private static final long PLAYBACK_ACTIONS = PlaybackStateCompat.ACTION_PAUSE
49 | PlaybackStateCompat.ACTION_PLAY;
50 private static final PlaybackStateCompat INIT_PLAYBACK_STATE = new PlaybackStateCompat.Builder()
51 .setState(PlaybackStateCompat.STATE_NONE, 0, .0f).build();
136 PlaybackStateCompat.Builder bob = new PlaybackStateCompat.Builder(); in publishState()
140 bob.setState(PlaybackStateCompat.STATE_PLAYING, -1, 1); in publishState()
144 bob.setState(PlaybackStateCompat.STATE_PAUSED, -1, 0); in publishState()
148 bob.setState(PlaybackStateCompat.STATE_BUFFERING, -1, 0); in publishState()
151 bob.setState(PlaybackStateCompat.STATE_STOPPED, -1, 0); in publishState()
[all …]
/frameworks/support/media/src/main/java/android/support/v4/media/session/
DPlaybackStateCompat.java43 public final class PlaybackStateCompat implements Parcelable { class
547 List<PlaybackStateCompat.CustomAction> mCustomActions;
553 PlaybackStateCompat(int state, long position, long bufferedPosition, in PlaybackStateCompat() method in PlaybackStateCompat
555 List<PlaybackStateCompat.CustomAction> customActions, in PlaybackStateCompat()
570 PlaybackStateCompat(Parcel in) { in PlaybackStateCompat() method in PlaybackStateCompat
706 public List<PlaybackStateCompat.CustomAction> getCustomActions() { in getCustomActions()
783 public static PlaybackStateCompat fromPlaybackState(Object stateObj) { in fromPlaybackState()
786 List<PlaybackStateCompat.CustomAction> customActions = null; in fromPlaybackState()
799 PlaybackStateCompat state = new PlaybackStateCompat( in fromPlaybackState()
831 for (PlaybackStateCompat.CustomAction customAction : mCustomActions) { in getPlaybackState()
[all …]
DMediaSessionCompat.java680 public void setPlaybackState(PlaybackStateCompat state) { in setPlaybackState()
760 public void setRepeatMode(@PlaybackStateCompat.RepeatMode int repeatMode) { in setRepeatMode()
775 public void setShuffleMode(@PlaybackStateCompat.ShuffleMode int shuffleMode) { in setShuffleMode()
887 private static PlaybackStateCompat getStateWithUpdatedPosition( in getStateWithUpdatedPosition()
888 PlaybackStateCompat state, MediaMetadataCompat metadata) { in getStateWithUpdatedPosition()
889 if (state == null || state.getPosition() == PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN) { in getStateWithUpdatedPosition()
893 if (state.getState() == PlaybackStateCompat.STATE_PLAYING in getStateWithUpdatedPosition()
894 || state.getState() == PlaybackStateCompat.STATE_FAST_FORWARDING in getStateWithUpdatedPosition()
895 || state.getState() == PlaybackStateCompat.STATE_REWINDING) { in getStateWithUpdatedPosition()
912 return new PlaybackStateCompat.Builder(state) in getStateWithUpdatedPosition()
[all …]
DMediaControllerCompat.java39 import android.support.v4.media.session.PlaybackStateCompat.CustomAction;
313 public PlaybackStateCompat getPlaybackState() { in getPlaybackState()
711 public void onPlaybackStateChanged(PlaybackStateCompat state) { in onPlaybackStateChanged()
778 public void onRepeatModeChanged(@PlaybackStateCompat.RepeatMode int repeatMode) { in onRepeatModeChanged()
789 public void onShuffleModeChanged(@PlaybackStateCompat.ShuffleMode int shuffleMode) { in onShuffleModeChanged()
865 PlaybackStateCompat.fromPlaybackState(stateObj)); in onPlaybackStateChanged()
937 public void onPlaybackStateChanged(PlaybackStateCompat state) throws RemoteException { in onPlaybackStateChanged()
1059 onPlaybackStateChanged((PlaybackStateCompat) msg.obj); in handleMessage()
1274 public abstract void setRepeatMode(@PlaybackStateCompat.RepeatMode int repeatMode); in setRepeatMode()
1284 public abstract void setShuffleMode(@PlaybackStateCompat.ShuffleMode int shuffleMode); in setShuffleMode()
[all …]
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/media/
DMediaControllerAdapterTest.java39 import android.support.v4.media.session.PlaybackStateCompat;
94 createPlaybackStateForTesting(PlaybackStateCompat.STATE_STOPPED)); in testStateStopped()
110 createPlaybackStateForTesting(PlaybackStateCompat.STATE_PAUSED)); in testStatePaused()
127 createPlaybackStateForTesting(PlaybackStateCompat.STATE_PLAYING)); in testStatePlaying()
144 createPlaybackStateForTesting(PlaybackStateCompat.STATE_BUFFERING)); in testStateBuffering()
160 createPlaybackStateForTesting(PlaybackStateCompat.STATE_ERROR)); in testStateError()
176 createPlaybackStateForTesting(PlaybackStateCompat.STATE_FAST_FORWARDING)); in testStateFastForwarding()
193 createPlaybackStateForTesting(PlaybackStateCompat.STATE_REWINDING)); in testStateRewinding()
316 assertEquals(mCallback.mRepeatMode, PlaybackStateCompat.REPEAT_MODE_NONE); in testRepeatModeRepeatModeNone()
335 assertEquals(mCallback.mRepeatMode, PlaybackStateCompat.REPEAT_MODE_ONE); in testRepeatModeRepeatModeOne()
[all …]
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/
DQueueFragment.java25 import android.support.v4.media.session.PlaybackStateCompat;
55 private PlaybackStateCompat mPlaybackState;
116 public void onPlaybackStateChanged(PlaybackStateCompat state) {
198 private void onPlaybackStateChanged(PlaybackStateCompat state) { in onPlaybackStateChanged()
208 case PlaybackStateCompat.STATE_PLAYING: in onPlaybackStateChanged()
212 case PlaybackStateCompat.STATE_PAUSED: in onPlaybackStateChanged()
216 case PlaybackStateCompat.STATE_STOPPED: in onPlaybackStateChanged()
220 case PlaybackStateCompat.STATE_ERROR: in onPlaybackStateChanged()
223 case PlaybackStateCompat.STATE_BUFFERING: in onPlaybackStateChanged()
226 case PlaybackStateCompat.STATE_NONE: in onPlaybackStateChanged()
[all …]
DMediaNotificationManager.java33 import android.support.v4.media.session.PlaybackStateCompat;
63 private PlaybackStateCompat mPlaybackState;
201 public void onPlaybackStateChanged(PlaybackStateCompat state) {
204 if (state != null && (state.getState() == PlaybackStateCompat.STATE_STOPPED ||
205 state.getState() == PlaybackStateCompat.STATE_NONE)) {
242 if ((mPlaybackState.getActions() & PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS) != 0) { in createNotification()
250 if ((mPlaybackState.getActions() & PlaybackStateCompat.ACTION_SKIP_TO_NEXT) != 0) { in createNotification()
296 if (mPlaybackState.getState() == PlaybackStateCompat.STATE_PLAYING) { in addPlayPauseAction()
315 if (mPlaybackState.getState() == PlaybackStateCompat.STATE_PLAYING in setNotificationPlaybackState()
333 builder.setOngoing(mPlaybackState.getState() == PlaybackStateCompat.STATE_PLAYING); in setNotificationPlaybackState()
DMediaBrowserServiceSupport.java37 import android.support.v4.media.session.PlaybackStateCompat;
165 mPlayback.setState(PlaybackStateCompat.STATE_NONE); in onCreate()
644 long position = PlaybackStateCompat.PLAYBACK_POSITION_UNKNOWN; in updatePlaybackState()
649 PlaybackStateCompat.Builder stateBuilder = new PlaybackStateCompat.Builder() in updatePlaybackState()
660 state = PlaybackStateCompat.STATE_ERROR; in updatePlaybackState()
672 if (state == PlaybackStateCompat.STATE_PLAYING in updatePlaybackState()
673 || state == PlaybackStateCompat.STATE_PAUSED) { in updatePlaybackState()
678 private void setCustomAction(PlaybackStateCompat.Builder stateBuilder) { in setCustomAction()
695 long actions = PlaybackStateCompat.ACTION_PLAY in getAvailableActions()
696 | PlaybackStateCompat.ACTION_PLAY_FROM_MEDIA_ID in getAvailableActions()
[all …]
/frameworks/support/media-widget/src/androidTest/java/androidx/media/widget/
DVideoView2Test.java41 import android.support.v4.media.session.PlaybackStateCompat;
175 public void onPlaybackStateChanged(PlaybackStateCompat state) { in testPlayVideo()
188 ArgumentCaptor<PlaybackStateCompat> someState = in testPlayVideo()
189 ArgumentCaptor.forClass(PlaybackStateCompat.class); in testPlayVideo()
192 List<PlaybackStateCompat> states = someState.getAllValues(); in testPlayVideo()
193 assertEquals(PlaybackStateCompat.STATE_PAUSED, states.get(0).getState()); in testPlayVideo()
194 assertEquals(PlaybackStateCompat.STATE_PLAYING, states.get(1).getState()); in testPlayVideo()
195 assertEquals(PlaybackStateCompat.STATE_STOPPED, states.get(2).getState()); in testPlayVideo()
211 public void onPlaybackStateChanged(PlaybackStateCompat state) { in testPlayVideoOnTextureView()
233 ArgumentCaptor<PlaybackStateCompat> someState = in testPlayVideoOnTextureView()
[all …]
/frameworks/support/media/src/main/java/androidx/media/
DMediaUtils2.java37 import android.support.v4.media.session.PlaybackStateCompat;
388 return PlaybackStateCompat.STATE_BUFFERING; in createPlaybackStateCompatState()
390 return PlaybackStateCompat.STATE_PLAYING; in createPlaybackStateCompatState()
392 return PlaybackStateCompat.STATE_PAUSED; in createPlaybackStateCompatState()
394 return PlaybackStateCompat.STATE_NONE; in createPlaybackStateCompatState()
396 return PlaybackStateCompat.STATE_ERROR; in createPlaybackStateCompatState()
399 return PlaybackStateCompat.STATE_ERROR; in createPlaybackStateCompatState()
404 case PlaybackStateCompat.STATE_ERROR: in toPlayerState()
406 case PlaybackStateCompat.STATE_NONE: in toPlayerState()
408 case PlaybackStateCompat.STATE_PAUSED: in toPlayerState()
[all …]
DMediaSession2ImplBase.java46 import android.support.v4.media.session.PlaybackStateCompat;
907 PlaybackStateCompat getPlaybackStateCompat() { in getPlaybackStateCompat()
911 long allActions = PlaybackStateCompat.ACTION_STOP | PlaybackStateCompat.ACTION_PAUSE in getPlaybackStateCompat()
912 | PlaybackStateCompat.ACTION_PLAY | PlaybackStateCompat.ACTION_REWIND in getPlaybackStateCompat()
913 | PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS in getPlaybackStateCompat()
914 | PlaybackStateCompat.ACTION_SKIP_TO_NEXT in getPlaybackStateCompat()
915 | PlaybackStateCompat.ACTION_FAST_FORWARD in getPlaybackStateCompat()
916 | PlaybackStateCompat.ACTION_SET_RATING in getPlaybackStateCompat()
917 | PlaybackStateCompat.ACTION_SEEK_TO | PlaybackStateCompat.ACTION_PLAY_PAUSE in getPlaybackStateCompat()
918 | PlaybackStateCompat.ACTION_PLAY_FROM_MEDIA_ID in getPlaybackStateCompat()
[all …]
/frameworks/support/media/version-compat-tests/previous/service/src/androidTest/java/android/support/mediacompat/service/
DMediaSessionCompatCallbackTest.java96 import android.support.v4.media.session.PlaybackStateCompat;
278 PlaybackStateCompat stateIn = new PlaybackStateCompat.Builder() in testGetPlaybackStateWithPositionUpdate()
279 .setState(PlaybackStateCompat.STATE_PLAYING, TEST_POSITION, TEST_PLAYBACK_SPEED, in testGetPlaybackStateWithPositionUpdate()
293 PlaybackStateCompat stateOut = mSession.getController().getPlaybackState(); in testGetPlaybackStateWithPositionUpdate()
496 final PlaybackStateCompat.CustomAction customAction = in testTransportControlsAndMediaSessionCallback()
497 new PlaybackStateCompat.CustomAction.Builder(action, action, -1) in testTransportControlsAndMediaSessionCallback()
568 final int repeatMode = PlaybackStateCompat.REPEAT_MODE_ALL; in testTransportControlsAndMediaSessionCallback()
576 final int shuffleMode = PlaybackStateCompat.SHUFFLE_MODE_ALL; in testTransportControlsAndMediaSessionCallback()
601 setPlaybackState(PlaybackStateCompat.STATE_PLAYING); in testCallbackOnMediaButtonEvent()
641 setPlaybackState(PlaybackStateCompat.STATE_PAUSED); in testCallbackOnMediaButtonEvent()
[all …]
/frameworks/support/media/version-compat-tests/current/service/src/androidTest/java/android/support/mediacompat/service/
DMediaSessionCompatCallbackTest.java96 import android.support.v4.media.session.PlaybackStateCompat;
280 PlaybackStateCompat stateIn = new PlaybackStateCompat.Builder() in testGetPlaybackStateWithPositionUpdate()
281 .setState(PlaybackStateCompat.STATE_PLAYING, TEST_POSITION, TEST_PLAYBACK_SPEED, in testGetPlaybackStateWithPositionUpdate()
295 PlaybackStateCompat stateOut = mSession.getController().getPlaybackState(); in testGetPlaybackStateWithPositionUpdate()
498 final PlaybackStateCompat.CustomAction customAction = in testTransportControlsAndMediaSessionCallback()
499 new PlaybackStateCompat.CustomAction.Builder(action, action, -1) in testTransportControlsAndMediaSessionCallback()
570 final int repeatMode = PlaybackStateCompat.REPEAT_MODE_ALL; in testTransportControlsAndMediaSessionCallback()
578 final int shuffleMode = PlaybackStateCompat.SHUFFLE_MODE_ALL; in testTransportControlsAndMediaSessionCallback()
603 setPlaybackState(PlaybackStateCompat.STATE_PLAYING); in testCallbackOnMediaButtonEvent()
643 setPlaybackState(PlaybackStateCompat.STATE_PAUSED); in testCallbackOnMediaButtonEvent()
[all …]
/frameworks/support/media-widget/src/main/java/androidx/media/widget/
DRoutePlayer.java26 import android.support.v4.media.session.PlaybackStateCompat;
44 public static final long PLAYBACK_ACTIONS = PlaybackStateCompat.ACTION_PAUSE
45 | PlaybackStateCompat.ACTION_PLAY | PlaybackStateCompat.ACTION_SEEK_TO
46 | PlaybackStateCompat.ACTION_FAST_FORWARD | PlaybackStateCompat.ACTION_REWIND;
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl_with_mp1/
DVideoView2ImplBaseWithMp1.java42 import android.support.v4.media.session.PlaybackStateCompat;
139 private PlaybackStateCompat.Builder mStateBuilder;
140 private List<PlaybackStateCompat.CustomAction> mCustomActionList;
181 PlaybackStateCompat.Builder psBuilder = new PlaybackStateCompat.Builder();
186 psBuilder.setState(PlaybackStateCompat.STATE_NONE, position, 0);
190 psBuilder.setState(PlaybackStateCompat.STATE_PLAYING, position, 1);
194 psBuilder.setState(PlaybackStateCompat.STATE_PAUSED, position, 0);
199 PlaybackStateCompat.STATE_BUFFERING, position, 0);
203 psBuilder.setState(PlaybackStateCompat.STATE_STOPPED, position, 0);
208 PlaybackStateCompat pbState = psBuilder.build();
[all …]
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl/
DVideoView2ImplBase.java43 import android.support.v4.media.session.PlaybackStateCompat;
144 private PlaybackStateCompat.Builder mStateBuilder;
145 private List<PlaybackStateCompat.CustomAction> mCustomActionList;
192 PlaybackStateCompat.Builder psBuilder = new PlaybackStateCompat.Builder();
197 psBuilder.setState(PlaybackStateCompat.STATE_NONE, position, 0);
201 psBuilder.setState(PlaybackStateCompat.STATE_PLAYING, position, 1);
205 psBuilder.setState(PlaybackStateCompat.STATE_PAUSED, position, 0);
210 PlaybackStateCompat.STATE_BUFFERING, position, 0);
214 psBuilder.setState(PlaybackStateCompat.STATE_STOPPED, position, 0);
219 PlaybackStateCompat pbState = psBuilder.build();
[all …]
/frameworks/support/media/src/main/aidl/android/support/v4/media/session/
DIMediaControllerCallback.aidl21 import android.support.v4.media.session.PlaybackStateCompat;
34 void onPlaybackStateChanged(in PlaybackStateCompat state); in onPlaybackStateChanged()
/frameworks/support/media/api_legacy/
D26.0.0.txt349 method public android.support.v4.media.session.PlaybackStateCompat getPlaybackState();
377 method public void onPlaybackStateChanged(android.support.v4.media.session.PlaybackStateCompat);
410 …ic abstract void sendCustomAction(android.support.v4.media.session.PlaybackStateCompat.CustomActio…
446 method public void setPlaybackState(android.support.v4.media.session.PlaybackStateCompat);
541 public final class PlaybackStateCompat implements android.os.Parcelable {
543 …method public static android.support.v4.media.session.PlaybackStateCompat fromPlaybackState(java.l…
547 …method public java.util.List<android.support.v4.media.session.PlaybackStateCompat.CustomAction> ge…
579 … final android.os.Parcelable.Creator<android.support.v4.media.session.PlaybackStateCompat> CREATOR;
614 public static final class PlaybackStateCompat.Builder {
615 ctor public PlaybackStateCompat.Builder();
[all …]
D26.1.0.txt349 method public android.support.v4.media.session.PlaybackStateCompat getPlaybackState();
377 method public void onPlaybackStateChanged(android.support.v4.media.session.PlaybackStateCompat);
410 …ic abstract void sendCustomAction(android.support.v4.media.session.PlaybackStateCompat.CustomActio…
446 method public void setPlaybackState(android.support.v4.media.session.PlaybackStateCompat);
541 public final class PlaybackStateCompat implements android.os.Parcelable {
543 …method public static android.support.v4.media.session.PlaybackStateCompat fromPlaybackState(java.l…
547 …method public java.util.List<android.support.v4.media.session.PlaybackStateCompat.CustomAction> ge…
579 … final android.os.Parcelable.Creator<android.support.v4.media.session.PlaybackStateCompat> CREATOR;
614 public static final class PlaybackStateCompat.Builder {
615 ctor public PlaybackStateCompat.Builder();
[all …]

123