HomeSort by relevance Sort by last modified time
    Searched refs:ACTION_PLAY (Results 1 - 25 of 33) 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";
  /frameworks/support/v7/mediarouter/src/android/support/v7/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...]
RemotePlaybackClient.java 101 * actions: {@link MediaControlIntent#ACTION_PLAY play},
226 * Please refer to {@link MediaControlIntent#ACTION_PLAY ACTION_PLAY} for
236 * {@link MediaControlIntent#ACTION_PLAY} intent, or null if none.
242 * @see MediaControlIntent#ACTION_PLAY
248 extras, callback, MediaControlIntent.ACTION_PLAY);
712 mRouteSupportsRemotePlayback = routeSupportsAction(MediaControlIntent.ACTION_PLAY)
    [all...]
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
DetailsFragment.java 51 private static final int ACTION_PLAY = 1;
80 mActionPlay = new Action(ACTION_PLAY, "Play");
97 actions.set(ACTION_PLAY, mActionPlay);
106 actions.set(ACTION_PLAY, mActionPlay);
109 } else if (action.getId() == ACTION_PLAY) {
NewDetailsFragment.java 53 private static final int ACTION_PLAY = 1;
93 mActionPlay = new Action(ACTION_PLAY, "Play");
111 actions.set(ACTION_PLAY, mActionPlay);
120 actions.set(ACTION_PLAY, mActionPlay);
123 } else if (action.getId() == ACTION_PLAY) {
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicIntentReceiver.java 52 context.startService(new Intent(MusicService.ACTION_PLAY));
MainActivity.java 78 startService(new Intent(MusicService.ACTION_PLAY));
MusicService.java 65 public static final String ACTION_PLAY = "com.example.android.musicplayer.action.PLAY";
215 else if (action.equals(ACTION_PLAY)) processPlayRequest();
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/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:
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/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:
  /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/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
MusicProvider.java 202 PlaybackState.ACTION_PLAY
227 PlaybackState.ACTION_PLAY
252 PlaybackState.ACTION_PLAY
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/
NotificationHelper.java 57 new Intent(com.android.onemedia.playback.RequestUtils.ACTION_PLAY).setPackage(pkg),
84 filter.addAction(RequestUtils.ACTION_PLAY);
114 } else if (RequestUtils.ACTION_PLAY.equals(action)) {
PlayerSession.java 62 psBob.setActions(PlaybackState.ACTION_PAUSE | PlaybackState.ACTION_PLAY);
  /frameworks/support/v4/ics/android/support/v4/media/session/
MediaSessionCompatApi14.java 49 private static final long ACTION_PLAY = 1 << 2;
140 if ((actions & ACTION_PLAY) != 0) {
  /frameworks/base/media/java/android/media/session/
PlaybackState.java 56 public static final long ACTION_PLAY = 1 << 2;
356 * <li> {@link PlaybackState#ACTION_PLAY}</li>
527 return ACTION_PLAY;
555 case (int) ACTION_PLAY:
876 * <li> {@link PlaybackState#ACTION_PLAY}</li>
    [all...]
MediaSession.java 737 if ((validActions & PlaybackState.ACTION_PLAY) != 0) {
783 | PlaybackState.ACTION_PLAY)) != 0;
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
Player.java 45 | PlaybackStateCompat.ACTION_PLAY;
SampleMediaRouteProvider.java 104 f2.addAction(MediaControlIntent.ACTION_PLAY);
307 if (action.equals(MediaControlIntent.ACTION_PLAY)) {
  /frameworks/support/v4/java/android/support/v4/media/session/
PlaybackStateCompat.java 43 @IntDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND,
69 public static final long ACTION_PLAY = 1 << 2;
389 * <li> {@link PlaybackStateCompat#ACTION_PLAY}</li>
895 * <li> {@link PlaybackStateCompat#ACTION_PLAY}</li>
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
PlaybackOverlayActivity.java 131 long actions = PlaybackState.ACTION_PLAY |
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteControllerDialog.java 371 boolean supportsPlay = (mState.getActions() & (PlaybackStateCompat.ACTION_PLAY
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/provider/
SampleMediaRouteProvider.java 96 f2.addAction(MediaControlIntent.ACTION_PLAY);
290 if (action.equals(MediaControlIntent.ACTION_PLAY)) {
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/provider/
SampleMediaRouteProvider.java 96 f2.addAction(MediaControlIntent.ACTION_PLAY);
290 if (action.equals(MediaControlIntent.ACTION_PLAY)) {
  /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)) {

Completed in 7397 milliseconds

1 2