Lines Matching full:pendingintent
21 import android.app.PendingIntent;
64 private PendingIntent mPauseIntent;
65 private PendingIntent mPlayIntent;
66 private PendingIntent mPreviousIntent;
67 private PendingIntent mNextIntent;
84 mPauseIntent = PendingIntent.getBroadcast(mService, REQUEST_CODE,
85 new Intent(ACTION_PAUSE).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
86 mPlayIntent = PendingIntent.getBroadcast(mService, REQUEST_CODE,
87 new Intent(ACTION_PLAY).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
88 mPreviousIntent = PendingIntent.getBroadcast(mService, REQUEST_CODE,
89 new Intent(ACTION_PREV).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
90 mNextIntent = PendingIntent.getBroadcast(mService, REQUEST_CODE,
91 new Intent(ACTION_NEXT).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
185 private PendingIntent createContentIntent() {
188 return PendingIntent.getActivity(mService, REQUEST_CODE, openUI,
189 PendingIntent.FLAG_CANCEL_CURRENT);
299 PendingIntent intent;