Searched defs:ACTION_PLAY (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DRequestUtils.java30 public static final String ACTION_PLAY = "com.android.onemedia.play"; field in class:RequestUtils
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DDetailsFragment.java51 private static final int ACTION_PLAY = 1; field in class:DetailsFragment
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) {
H A DDetailsSupportFragment.java53 private static final int ACTION_PLAY = 1; field in class:DetailsSupportFragment
82 mActionPlay = new Action(ACTION_PLAY, "Play");
99 actions.set(ACTION_PLAY, mActionPlay);
108 actions.set(ACTION_PLAY, mActionPlay);
111 } else if (action.getId() == ACTION_PLAY) {
H A DNewDetailsFragment.java53 private static final int ACTION_PLAY = 1; field in class:NewDetailsFragment
92 mActionPlay = new Action(ACTION_PLAY, "Play");
110 actions.set(ACTION_PLAY, mActionPlay);
119 actions.set(ACTION_PLAY, mActionPlay);
122 } else if (action.getId() == ACTION_PLAY) {
H A DNewDetailsSupportFragment.java55 private static final int ACTION_PLAY = 1; field in class:NewDetailsSupportFragment
94 mActionPlay = new Action(ACTION_PLAY, "Play");
112 actions.set(ACTION_PLAY, mActionPlay);
121 actions.set(ACTION_PLAY, mActionPlay);
124 } else if (action.getId() == ACTION_PLAY) {
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DDetailsFragment.java51 private static final int ACTION_PLAY = 1; field in class:DetailsFragment
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) {
H A DDetailsSupportFragment.java53 private static final int ACTION_PLAY = 1; field in class:DetailsSupportFragment
82 mActionPlay = new Action(ACTION_PLAY, "Play");
99 actions.set(ACTION_PLAY, mActionPlay);
108 actions.set(ACTION_PLAY, mActionPlay);
111 } else if (action.getId() == ACTION_PLAY) {
H A DNewDetailsFragment.java53 private static final int ACTION_PLAY = 1; field in class:NewDetailsFragment
92 mActionPlay = new Action(ACTION_PLAY, "Play");
110 actions.set(ACTION_PLAY, mActionPlay);
119 actions.set(ACTION_PLAY, mActionPlay);
122 } else if (action.getId() == ACTION_PLAY) {
H A DNewDetailsSupportFragment.java55 private static final int ACTION_PLAY = 1; field in class:NewDetailsSupportFragment
94 mActionPlay = new Action(ACTION_PLAY, "Play");
112 actions.set(ACTION_PLAY, mActionPlay);
121 actions.set(ACTION_PLAY, mActionPlay);
124 } else if (action.getId() == ACTION_PLAY) {
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaControlIntent.java38 * {@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"; field in class:MediaControlIntent
480 * This action works just like {@link #ACTION_PLAY play} except that it does
494 * @see #ACTION_PLAY
939 * @see #ACTION_PLAY
968 * @see #ACTION_PLAY
[all...]
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaNotificationManager.java53 public static final String ACTION_PLAY = "com.example.android.supportv4.media.play"; field in class:MediaNotificationManager
89 new Intent(ACTION_PLAY).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
117 filter.addAction(ACTION_PLAY);
153 case ACTION_PLAY:
/frameworks/support/media-compat/ics/android/support/v4/media/session/
H A DMediaSessionCompatApi14.java49 private static final long ACTION_PLAY = 1 << 2; field in class:MediaSessionCompatApi14
140 if ((actions & ACTION_PLAY) != 0) {
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaNotificationManager.java53 public static final String ACTION_PLAY = "com.example.android.supportv4.media.play"; field in class:MediaNotificationManager
89 new Intent(ACTION_PLAY).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
117 filter.addAction(ACTION_PLAY);
153 case ACTION_PLAY:
/frameworks/base/media/java/android/media/session/
H A DPlaybackState.java44 @IntDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND,
71 public static final long ACTION_PLAY = 1 << 2; field in class:PlaybackState
414 * <li> {@link PlaybackState#ACTION_PLAY}</li>
590 return ACTION_PLAY;
618 case (int) ACTION_PLAY:
948 * <li> {@link PlaybackState#ACTION_PLAY}</li>
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DPlaybackStateCompat.java48 @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 class:PlaybackStateCompat
311 * <li>{@link PlaybackStateCompat#ACTION_PLAY}</li>
326 if (action == ACTION_PLAY) {
477 * <li> {@link PlaybackStateCompat#ACTION_PLAY}</li>
987 * <li> {@link PlaybackStateCompat#ACTION_PLAY}</li>

Completed in 383 milliseconds