Home
last modified time | relevance | path

Searched refs:ACTION_NEXT (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
DPipMediaController.java51 private static final String ACTION_NEXT = "com.android.systemui.pip.phone.NEXT"; field in PipMediaController
83 } else if (action.equals(ACTION_NEXT)) {
106 mediaControlFilter.addAction(ACTION_NEXT); in PipMediaController()
193 PendingIntent.getBroadcast(mContext, 0, new Intent(ACTION_NEXT), in createMediaActions()
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
DMediaNotificationManager.java55 public static final String ACTION_NEXT = "com.example.android.supportv4.media.next"; field in MediaNotificationManager
93 new Intent(ACTION_NEXT).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT); in MediaNotificationManager()
115 filter.addAction(ACTION_NEXT); in startNotification()
156 case ACTION_NEXT: in onReceive()
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
DNotificationHelper.java63 new Intent(com.android.onemedia.playback.RequestUtils.ACTION_NEXT).setPackage(pkg), in NotificationHelper()
82 filter.addAction(RequestUtils.ACTION_NEXT); in onStart()
116 } else if (RequestUtils.ACTION_NEXT.equals(action)) { in onReceive()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
DWizardManagerHelper.java32 private static final String ACTION_NEXT = "com.android.wizard.NEXT"; field in WizardManagerHelper
108 Intent intent = new Intent(ACTION_NEXT); in getNextIntent()
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
DRequestUtils.java34 public static final String ACTION_NEXT = "com.android.onemedia.next"; field in RequestUtils