Lines Matching refs:Builder
183 final Notification.Builder builder = new Notification.Builder(getApplicationContext());
184 builder.setOngoing(true);
185 builder.setPriority(Notification.PRIORITY_HIGH);
186 builder.setSmallIcon(R.drawable.ic_emergency_callback_mode);
187 builder.setTicker(getText(R.string.phone_entered_ecm_text));
188 builder.setContentTitle(getText(R.string.phone_in_ecm_notification_title));
189 builder.setColor(getResources().getColor(R.color.dialer_theme_color));
195 builder.setContentIntent(contentIntent);
207 builder.setContentText(text);
210 mNotificationManager.notify(R.string.phone_in_ecm_notification_title, builder.build());