HomeSort by relevance Sort by last modified time
    Searched defs:ACTION_PLAY (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
RequestUtils.java 30 public static final String ACTION_PLAY = "com.android.onemedia.play";
  /packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/
PlayPauseStopImageView.java 51 @IntDef({ACTION_PLAY, ACTION_STOP, ACTION_PAUSE, ACTION_DISABLED})
58 public static final int ACTION_PLAY = 1;
97 case ACTION_PLAY:
PlaybackModel.java 334 @IntDef({ACTION_PLAY, ACTION_STOP, ACTION_PAUSE, ACTION_DISABLED})
341 public static final int ACTION_PLAY = 1;
374 return ACTION_PLAY;
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
MediaControlIntent.java 38 * {@link #ACTION_PLAY play} or {@link #ACTION_ENQUEUE enqueue} intent with the Uri of the
129 * relies on the use of the {@link #ACTION_PLAY play} and {@link #ACTION_ENQUEUE enqueue}
145 * Each successful {@link #ACTION_PLAY play} or {@link #ACTION_ENQUEUE enqueue} action
227 * <li>{@link #ACTION_PLAY Play}: Starts playing content specified by a given Uri
442 * Intent intent = new Intent(MediaControlIntent.ACTION_PLAY);
472 public static final String ACTION_PLAY = "android.media.intent.action.PLAY";
480 * This action works just like {@link #ACTION_PLAY play} except that it does
494 * @see #ACTION_PLAY
    [all...]
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
MediaControlIntent.java 38 * {@link #ACTION_PLAY play} or {@link #ACTION_ENQUEUE enqueue} intent with the Uri of the
129 * relies on the use of the {@link #ACTION_PLAY play} and {@link #ACTION_ENQUEUE enqueue}
145 * Each successful {@link #ACTION_PLAY play} or {@link #ACTION_ENQUEUE enqueue} action
227 * <li>{@link #ACTION_PLAY Play}: Starts playing content specified by a given Uri
442 * Intent intent = new Intent(MediaControlIntent.ACTION_PLAY);
472 public static final String ACTION_PLAY = "android.media.intent.action.PLAY";
480 * This action works just like {@link #ACTION_PLAY play} except that it does
494 * @see #ACTION_PLAY
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
PipMediaController.java 53 private static final String ACTION_PLAY = "com.android.systemui.pip.phone.PLAY";
83 if (action.equals(ACTION_PLAY)) {
116 mediaControlFilter.addAction(ACTION_PLAY);
177 if (!isPlaying && ((actions & PlaybackState.ACTION_PLAY) != 0)) {
202 PendingIntent.getBroadcast(mContext, 0, new Intent(ACTION_PLAY),
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
DetailsFragment.java 53 private static final int ACTION_PLAY = 1;
87 mActionPlay = new Action(ACTION_PLAY, "Play");
106 actions.set(ACTION_PLAY, mActionPlay);
116 actions.set(ACTION_PLAY, mActionPlay);
119 } else if (action.getId() == ACTION_PLAY) {
DetailsSupportFragment.java 56 private static final int ACTION_PLAY = 1;
90 mActionPlay = new Action(ACTION_PLAY, "Play");
109 actions.set(ACTION_PLAY, mActionPlay);
119 actions.set(ACTION_PLAY, mActionPlay);
122 } else if (action.getId() == ACTION_PLAY) {
NewDetailsFragment.java 63 private static final int ACTION_PLAY = 1;
148 mActionPlay = new Action(ACTION_PLAY, "Play");
165 actions.set(ACTION_PLAY, mActionPlay);
186 actions.set(ACTION_PLAY, mActionPlay);
197 } else if (action.getId() == ACTION_PLAY) {
304 adapter.set(ACTION_PLAY, mActionPlay);
307 adapter.set(ACTION_PLAY, mActionPlay);
NewDetailsSupportFragment.java 66 private static final int ACTION_PLAY = 1;
151 mActionPlay = new Action(ACTION_PLAY, "Play");
168 actions.set(ACTION_PLAY, mActionPlay);
189 actions.set(ACTION_PLAY, mActionPlay);
200 } else if (action.getId() == ACTION_PLAY) {
307 adapter.set(ACTION_PLAY, mActionPlay);
310 adapter.set(ACTION_PLAY, mActionPlay);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
MediaNotificationManager.java 50 public static final String ACTION_PLAY = "com.example.android.mediabrowserservice.play";
87 new Intent(ACTION_PLAY).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
115 filter.addAction(ACTION_PLAY);
151 case ACTION_PLAY:
  /frameworks/base/media/java/android/media/session/
PlaybackState.java 45 @LongDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND,
72 public static final long ACTION_PLAY = 1 << 2;
415 * <li> {@link PlaybackState#ACTION_PLAY}</li>
591 return ACTION_PLAY;
619 case (int) ACTION_PLAY:
    [all...]
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/
MediaNotificationManager.java 54 public static final String ACTION_PLAY = "com.example.android.supportv4.media.play";
90 new Intent(ACTION_PLAY).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
118 filter.addAction(ACTION_PLAY);
154 case ACTION_PLAY:
  /packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/
LocalMediaBrowserService.java 43 static final String ACTION_PLAY = "com.android.car.media.localmediaplayer.ACTION_PLAY";
64 case ACTION_PLAY:
131 filter.addAction(ACTION_PLAY);
  /packages/apps/Music/src/com/android/music/utils/
MediaNotificationManager.java 51 public static final String ACTION_PLAY = "com.android.music.play";
88 new Intent(ACTION_PLAY).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
116 filter.addAction(ACTION_PLAY);
152 case ACTION_PLAY:
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/provider/
SampleMediaRouteProvider.java 97 f2.addAction(MediaControlIntent.ACTION_PLAY);
289 if (action.equals(MediaControlIntent.ACTION_PLAY)) {
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/provider/
SampleMediaRouteProvider.java 97 f2.addAction(MediaControlIntent.ACTION_PLAY);
289 if (action.equals(MediaControlIntent.ACTION_PLAY)) {
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicService.java 65 public static final String ACTION_PLAY = "com.example.android.musicplayer.action.PLAY";
215 else if (action.equals(ACTION_PLAY)) processPlayRequest();
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/provider/
SampleMediaRouteProvider.java 96 f2.addAction(MediaControlIntent.ACTION_PLAY);
290 if (action.equals(MediaControlIntent.ACTION_PLAY)) {
  /frameworks/support/media/src/main/java/android/support/v4/media/session/
PlaybackStateCompat.java 49 @LongDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND,
62 @LongDef({ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND, ACTION_SKIP_TO_PREVIOUS,
86 public static final long ACTION_PLAY = 1 << 2;
504 * <li>{@link PlaybackStateCompat#ACTION_PLAY}</li>
519 if (action == ACTION_PLAY) {
677 * <li> {@link PlaybackStateCompat#ACTION_PLAY}</li>
    [all...]
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/media/
SampleMediaRouteProvider.java 92 f2.addAction(MediaControlIntent.ACTION_PLAY);
294 if (action.equals(MediaControlIntent.ACTION_PLAY)) {
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/27/
android.jar 

Completed in 241 milliseconds

1 2