/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/ |
D | DetailsSupportFragment.java | 53 private static final int ACTION_PLAY = 1; field in DetailsSupportFragment 82 mActionPlay = new Action(ACTION_PLAY, "Play"); in onCreate() 99 actions.set(ACTION_PLAY, mActionPlay); in onCreate() 108 actions.set(ACTION_PLAY, mActionPlay); in onCreate() 111 } else if (action.getId() == ACTION_PLAY) { in onCreate()
|
D | DetailsFragment.java | 51 private static final int ACTION_PLAY = 1; field in DetailsFragment 80 mActionPlay = new Action(ACTION_PLAY, "Play"); in onCreate() 97 actions.set(ACTION_PLAY, mActionPlay); in onCreate() 106 actions.set(ACTION_PLAY, mActionPlay); in onCreate() 109 } else if (action.getId() == ACTION_PLAY) { in onCreate()
|
D | NewDetailsSupportFragment.java | 55 private static final int ACTION_PLAY = 1; field in NewDetailsSupportFragment 94 mActionPlay = new Action(ACTION_PLAY, "Play"); in onCreate() 112 actions.set(ACTION_PLAY, mActionPlay); in onCreate() 121 actions.set(ACTION_PLAY, mActionPlay); in onCreate() 124 } else if (action.getId() == ACTION_PLAY) { in onCreate()
|
D | NewDetailsFragment.java | 53 private static final int ACTION_PLAY = 1; field in NewDetailsFragment 92 mActionPlay = new Action(ACTION_PLAY, "Play"); in onCreate() 110 actions.set(ACTION_PLAY, mActionPlay); in onCreate() 119 actions.set(ACTION_PLAY, mActionPlay); in onCreate() 122 } else if (action.getId() == ACTION_PLAY) { in onCreate()
|
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/ |
D | MediaNotificationManager.java | 53 public static final String ACTION_PLAY = "com.example.android.supportv4.media.play"; field in MediaNotificationManager 89 new Intent(ACTION_PLAY).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT); in MediaNotificationManager() 117 filter.addAction(ACTION_PLAY); in startNotification() 153 case ACTION_PLAY: in onReceive()
|
D | MediaBrowserServiceSupport.java | 694 long actions = PlaybackStateCompat.ACTION_PLAY in getAvailableActions()
|
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/ |
D | MusicProvider.java | 202 PlaybackState.ACTION_PLAY in getRootItemCursor() 227 PlaybackState.ACTION_PLAY in getRootItemCursor() 252 PlaybackState.ACTION_PLAY in getRootItemCursor()
|
/frameworks/base/tests/OneMedia/src/com/android/onemedia/ |
D | NotificationHelper.java | 57 new Intent(com.android.onemedia.playback.RequestUtils.ACTION_PLAY).setPackage(pkg), in NotificationHelper() 84 filter.addAction(RequestUtils.ACTION_PLAY); in onStart() 114 } else if (RequestUtils.ACTION_PLAY.equals(action)) { in onReceive()
|
D | PlayerSession.java | 62 psBob.setActions(PlaybackState.ACTION_PAUSE | PlaybackState.ACTION_PLAY); in PlayerSession()
|
/frameworks/base/media/java/android/media/session/ |
D | PlaybackState.java | 44 @IntDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND, 71 public static final long ACTION_PLAY = 1 << 2; field in PlaybackState 590 return ACTION_PLAY; in getActionForRccFlag() 618 case (int) ACTION_PLAY: in getRccFlagForAction()
|
D | MediaSession.java | 769 if ((validActions & PlaybackState.ACTION_PLAY) != 0) { in onMediaButtonEvent() 815 | PlaybackState.ACTION_PLAY)) != 0; in onMediaButtonEvent()
|
/frameworks/support/media-compat/java/android/support/v4/media/session/ |
D | PlaybackStateCompat.java | 48 @IntDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND, 60 @IntDef({ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND, ACTION_SKIP_TO_PREVIOUS, 84 public static final long ACTION_PLAY = 1 << 2; field in PlaybackStateCompat 326 if (action == ACTION_PLAY) { in toKeyCode()
|
D | MediaSessionCompat.java | 2208 if ((validActions & PlaybackStateCompat.ACTION_PLAY) != 0) { in onMediaButtonEvent() 2248 | PlaybackStateCompat.ACTION_PLAY)) != 0; in onMediaButtonEvent()
|
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
D | MediaControlIntent.java | 472 public static final String ACTION_PLAY = "android.media.intent.action.PLAY"; field in MediaControlIntent
|
D | RemotePlaybackClient.java | 290 extras, callback, MediaControlIntent.ACTION_PLAY); in play() 783 mRouteSupportsRemotePlayback = routeSupportsAction(MediaControlIntent.ACTION_PLAY) in detectFeatures()
|
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/ |
D | RequestUtils.java | 30 public static final String ACTION_PLAY = "com.android.onemedia.play"; field in RequestUtils
|
/frameworks/support/media-compat/ics/android/support/v4/media/session/ |
D | MediaSessionCompatApi14.java | 49 private static final long ACTION_PLAY = 1 << 2; field in MediaSessionCompatApi14 140 if ((actions & ACTION_PLAY) != 0) { in getRccTransportControlFlagsFromActions()
|
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/ |
D | Player.java | 46 | PlaybackStateCompat.ACTION_PLAY;
|
D | SampleMediaRouteProvider.java | 91 f2.addAction(MediaControlIntent.ACTION_PLAY); 293 if (action.equals(MediaControlIntent.ACTION_PLAY)) { in onControlRequest()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/pip/ |
D | PipControlsView.java | 34 import static android.media.session.PlaybackState.ACTION_PLAY;
|
D | PipManager.java | 552 if (!isPlaying && ((actions & PlaybackState.ACTION_PLAY) != 0)) { in getPlaybackState()
|
/frameworks/base/docs/html-intl/intl/ja/training/tv/playback/ |
D | now-playing.jd | 78 long actions = PlaybackState.ACTION_PLAY |
|
/frameworks/base/docs/html/training/tv/playback/ |
D | now-playing.jd | 109 actions |= PlaybackState.ACTION_PLAY;
|
/frameworks/base/docs/html/guide/topics/media/ |
D | mediarouteprovider.jd | 254 videoPlayback.addAction(MediaControlIntent.ACTION_PLAY); 417 if (action.equals(MediaControlIntent.ACTION_PLAY)) {
|
D | mediaplayer.jd | 290 private static final String ACTION_PLAY = "com.example.action.PLAY"; 295 if (intent.getAction().equals(ACTION_PLAY)) {
|