HomeSort by relevance Sort by last modified time
    Searched full:tickertext (Results 1 - 25 of 59) 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;
  /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);
  /packages/apps/Exchange/src/com/android/exchange/
CalendarSyncEnabler.java 102 String tickerText = mContext.getString(R.string.notification_exchange_calendar_added);
104 tickerText, System.currentTimeMillis());
105 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;
NotifyingService.java 98 // Note that in this example, we pass null for tickerText. We update the icon enough that
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 276 CharSequence tickerText = notification.tickerText;
277 if (!TextUtils.isEmpty(tickerText)) {
278 setContentDescription(tickerText);
BaseStatusBar.java 828 notification.getNotification().tickerText);
    [all...]
  /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)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
Ticker.java 170 mTextSwitcher = (TextSwitcher)sb.findViewById(R.id.tickerText);
193 && charSequencesEqual(seg.notification.getNotification().tickerText,
194 n.getNotification().tickerText)) {
201 n.getNotification().tickerText));
202 final CharSequence text = n.getNotification().tickerText;
  /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,
  /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/core/java/android/app/
Notification.java 184 public CharSequence tickerText;
676 public Notification(Context context, int icon, CharSequence tickerText, long when,
681 this.tickerText = tickerText;
691 * @param tickerText The text that flows by in the status bar when the notification first
699 public Notification(int icon, CharSequence tickerText, long when)
702 this.tickerText = tickerText;
723 tickerText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(parcel);
786 if (this.tickerText != null)
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 322 notification.tickerText = message;
401 return TextUtils.equals(firstNotification.tickerText, secondNotification.tickerText);
  /frameworks/support/v4/jellybean/android/support/v4/app/
NotificationCompatJellybean.java 38 .setTicker(n.tickerText, tickerView)
  /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;
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java     [all...]
  /frameworks/base/packages/SystemUI/res/layout/
status_bar.xml 142 <com.android.systemui.statusbar.phone.TickerView android:id="@+id/tickerText"
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 306 mUsbStorageNotification.tickerText = title;
395 mMediaStorageNotification.tickerText = title;
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java     [all...]
  /packages/services/Telephony/src/com/android/phone/
NotificationMgr.java     [all...]
  /frameworks/base/services/java/com/android/server/wifi/
WifiNotificationController.java 246 mNotification.tickerText = title;

Completed in 474 milliseconds

1 2 3