HomeSort by relevance Sort by last modified time
    Searched refs:tickerText (Results 1 - 25 of 47) sorted by null

1 2

  /packages/apps/Exchange/src/com/android/exchange/
CalendarSyncEnabler.java 101 String tickerText = mContext.getString(R.string.notification_exchange_calendar_added);
103 tickerText, System.currentTimeMillis());
104 n.setLatestEventInfo(mContext, tickerText, emailAddresses, launchCalendarPendingIntent);
  /frameworks/base/core/java/android/app/
Notification.java 149 public CharSequence tickerText;
325 public Notification(Context context, int icon, CharSequence tickerText, long when,
330 this.tickerText = tickerText;
340 * @param tickerText The text that flows by in the status bar when the notification first
348 public Notification(int icon, CharSequence tickerText, long when)
351 this.tickerText = tickerText;
372 tickerText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(parcel);
414 if (this.tickerText != null)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessage.java 122 String tickerText = getString(R.string.imcoming_message_ticker_text, message);
125 Notification notif = new Notification(R.drawable.stat_sample, tickerText,
175 String tickerText = getString(R.string.imcoming_message_ticker_text, message);
178 Notification notif = new Notification(R.drawable.stat_sample, tickerText,
StatusBarNotifications.java 198 String tickerText = showTicker ? getString(textId) : null;
201 Notification notification = new Notification(moodId, tickerText,
225 notif.tickerText = text;
  /cts/tests/tests/app/src/android/app/cts/
NotificationTest.java 39 private static final String TICKER_TEXT = "tickerText";
77 assertEquals(TICKER_TEXT, mNotification.tickerText);
114 mNotification.tickerText = TICKER_TEXT;
140 assertEquals(mNotification.tickerText, result.tickerText);
168 mNotification.tickerText = null;
173 assertNull(result.tickerText);
  /frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java 247 public Builder setTicker(CharSequence tickerText) {
248 mNotification.tickerText = tickerText;
257 public Builder setTicker(CharSequence tickerText, RemoteViews views) {
258 mNotification.tickerText = tickerText;
  /frameworks/support/v4/honeycomb/android/support/v4/app/
NotificationCompatHoneycomb.java 34 .setTicker(n.tickerText, tickerView)
  /packages/apps/Mms/src/com/android/mms/transaction/
SimFullReceiver.java 54 notification.tickerText = context.getString(R.string.sim_full_title);
SmsRejectedReceiver.java 77 notification.tickerText = context.getString(titleId);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
Ticker.java 165 mTextSwitcher = (TextSwitcher)sb.findViewById(R.id.tickerText);
188 && CharSequences.equals(seg.notification.notification.tickerText,
189 n.notification.tickerText)) {
196 n.notification.tickerText));
197 final Segment newSegment = new Segment(n, icon, n.notification.tickerText);
PhoneStatusBar.java 337 TickerView tickerView = (TickerView)sb.findViewById(R.id.tickerText);
560 alertText.setText(notification.notification.tickerText);
633 boolean updateTicker = notification.notification.tickerText != null
634 && !TextUtils.equals(notification.notification.tickerText,
635 oldEntry.notification.notification.tickerText);
658 notification.notification.tickerText);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 264 CharSequence tickerText = notification.tickerText;
265 if (!TextUtils.isEmpty(tickerText)) {
266 setContentDescription(tickerText);
  /packages/apps/Contacts/src/com/android/contacts/vcard/
NotificationImportExportListener.java 101 final String tickerText =
110 mContext.getApplicationContext(), VCardService.TYPE_IMPORT, description, tickerText,
189 * @param tickerText
198 Context context, int type, String description, String tickerText,
220 .setTicker(tickerText)
ExportProcessor.java 235 final String tickerText =
239 VCardService.TYPE_EXPORT, description, tickerText, mJobId, displayName,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
TabletTicker.java 287 } else if (n.tickerText != null) {
290 new StatusBarIcon(notification.pkg, n.icon, n.iconLevel, 0, n.tickerText));
295 tv.setText(n.tickerText);
297 throw new RuntimeException("tickerView==null && tickerText==null");
TabletStatusBar.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
LocationController.java 101 n.tickerText = null;
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 170 pw.println(prefix + " tickerText=" + notification.tickerText);
    [all...]
DeviceStorageMonitorService.java 352 notification.tickerText = title;
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 328 notification.tickerText = message;
597 TestCase.assertEquals(message, expectedNotification.tickerText.toString(),
598 receivedNotification.tickerText.toString());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 311 mUsbStorageNotification.tickerText = title;
398 mMediaStorageNotification.tickerText = title;
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java 327 notification.tickerText = eventName;
329 notification.tickerText = eventName + " - " + location;
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 209 mNiNotification.tickerText = getNotifTicker(notif, mContext);
  /packages/apps/Contacts/src/com/android/contacts/calllog/
DefaultVoicemailNotifier.java 175 notification.tickerText = resources.getString(
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicService.java 533 mNotification.tickerText = text;

Completed in 507 milliseconds

1 2