Home
last modified time | relevance | path

Searched refs:clickIntent (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Mms/src/com/android/mms/widget/
DMmsWidgetProvider.java85 PendingIntent clickIntent; in updateWidget() local
97 clickIntent = PendingIntent.getActivity( in updateWidget()
99 remoteViews.setOnClickPendingIntent(R.id.widget_header, clickIntent); in updateWidget()
104 clickIntent = PendingIntent.getActivity( in updateWidget()
106 remoteViews.setOnClickPendingIntent(R.id.widget_compose, clickIntent); in updateWidget()
DMmsWidgetService.java283 Intent clickIntent = new Intent(Intent.ACTION_VIEW); local
284 clickIntent.setType("vnd.android-dir/mms-sms");
285 clickIntent.putExtra("thread_id", conv.getThreadId());
287 remoteViews.setOnClickFillInIntent(R.id.widget_conversation, clickIntent);
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
DPhotoAppWidgetProvider.java96 Intent clickIntent = new Intent(context, WidgetClickHandler.class); in buildStackWidget() local
98 context, 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT); in buildStackWidget()
118 Intent clickIntent = new Intent(context, WidgetClickHandler.class) in buildFrameWidget() local
121 clickIntent, PendingIntent.FLAG_CANCEL_CURRENT); in buildFrameWidget()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapService.java689 Intent clickIntent = new Intent(); in createPbapNotification() local
690 clickIntent.setClass(this, BluetoothPbapActivity.class); in createPbapNotification()
691 clickIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in createPbapNotification()
692 clickIntent.setAction(action); in createPbapNotification()
708 .getActivity(this, 0, clickIntent, 0)); in createPbapNotification()
/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertReceiver.java261 Intent clickIntent = new Intent(); in createAlertActivityIntent() local
262 clickIntent.setClass(context, AlertActivity.class); in createAlertActivityIntent()
263 clickIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in createAlertActivityIntent()
264 return PendingIntent.getActivity(context, 0, clickIntent, in createAlertActivityIntent()
288 PendingIntent clickIntent = createClickEventIntent(context, eventId, startMillis, in buildBasicNotification() local
299 notificationBuilder.setContentIntent(clickIntent); in buildBasicNotification()
/packages/apps/Mms/src/com/android/mms/transaction/
DMessagingNotification.java381 Intent clickIntent, String message, String subject, in NotificationInfo() argument
386 mClickIntent = clickIntent; in NotificationInfo()
757 Intent clickIntent = ComposeMessageActivity.createIntent(context, threadId); in getNewMessageNotificationInfo() local
758 clickIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in getNewMessageNotificationInfo()
770 clickIntent, message, subject, ticker, timeMillis, in getNewMessageNotificationInfo()