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

1 2 3

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowNotification.java 23 public void __constructor__(int icon, CharSequence tickerText, long when) {
25 realNotification.tickerText = tickerText;
  /packages/apps/Exchange/exchange2/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);
  /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 33 private static final String TICKER_TEXT = "tickerText";
57 assertEquals(TICKER_TEXT, mNotification.tickerText);
77 mNotification.tickerText = TICKER_TEXT;
103 assertEquals(mNotification.tickerText, result.tickerText);
131 mNotification.tickerText = null;
136 assertNull(result.tickerText);
  /frameworks/support/v4/honeycomb/android/support/v4/app/
NotificationCompatHoneycomb.java 34 .setTicker(n.tickerText, tickerView)
  /frameworks/support/v4/ics/android/support/v4/app/
NotificationCompatIceCreamSandwich.java 35 .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 172 mTextSwitcher = (TextSwitcher)sb.findViewById(R.id.tickerText);
195 && CharSequences.equals(seg.notification.getNotification().tickerText,
196 n.getNotification().tickerText)) {
203 n.getNotification().tickerText));
204 final CharSequence text = n.getNotification().tickerText;
  /frameworks/base/core/java/android/app/
Notification.java 184 public CharSequence tickerText;
551 public Notification(Context context, int icon, CharSequence tickerText, long when,
556 this.tickerText = tickerText;
566 * @param tickerText The text that flows by in the status bar when the notification first
574 public Notification(int icon, CharSequence tickerText, long when)
577 this.tickerText = tickerText;
598 tickerText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(parcel);
661 if (this.tickerText != null)
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java 394 public Builder setTicker(CharSequence tickerText) {
395 mNotification.tickerText = tickerText;
404 public Builder setTicker(CharSequence tickerText, RemoteViews views) {
405 mNotification.tickerText = tickerText;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 282 CharSequence tickerText = notification.tickerText;
283 if (!TextUtils.isEmpty(tickerText)) {
284 setContentDescription(tickerText);
BaseStatusBar.java     [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
NotificationImportExportListener.java 100 final String tickerText =
109 mContext.getApplicationContext(), VCardService.TYPE_IMPORT, description, tickerText,
188 * @param tickerText
197 Context context, int type, String description, String tickerText,
219 .setTicker(tickerText)
ExportProcessor.java 238 final String tickerText =
242 VCardService.TYPE_EXPORT, description, tickerText, mJobId, displayName,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
TabletTicker.java 286 } else if (n.tickerText != null) {
290 n.tickerText));
295 tv.setText(n.tickerText);
297 throw new RuntimeException("tickerView==null && tickerText==null");
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java     [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 322 notification.tickerText = message;
401 return TextUtils.equals(firstNotification.tickerText, secondNotification.tickerText);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
LocationController.java 112 n.tickerText = null;
  /frameworks/support/v4/jellybean/android/support/v4/app/
NotificationCompatJellybean.java 38 .setTicker(n.tickerText, tickerView)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 314 mUsbStorageNotification.tickerText = title;
403 mMediaStorageNotification.tickerText = title;
  /frameworks/base/services/java/com/android/server/wifi/
WifiNotificationController.java 246 mNotification.tickerText = title;
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 209 mNiNotification.tickerText = getNotifTicker(notif, mContext);
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicService.java 533 mNotification.tickerText = text;

Completed in 694 milliseconds

1 2 3