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

  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaControlIntent.java 37 * then an application can ask it to play media remotely by sending a {@link #ACTION_PLAY play}
128 * {@link #ACTION_PLAY play action} without specifying an existing session id as a parameter.
136 * Each successful {@link #ACTION_PLAY play action} returns a unique media item id that
207 * <li>{@link #ACTION_PLAY Play}: Starts playing content specified by a given Uri
388 * Intent intent = new Intent(MediaControlIntent.ACTION_PLAY);
418 public static final String ACTION_PLAY = "android.media.intent.action.PLAY";
426 * This action works just like {@link #ACTION_PLAY play} except that it does
440 * @see #ACTION_PLAY
680 * The session id is returned by {@link #ACTION_PLAY} along with the media item id
693 * @see #ACTION_PLAY
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouteProvider.java 88 f2.addAction(MediaControlIntent.ACTION_PLAY);
206 if (intent.getAction().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();

Completed in 121 milliseconds