Home | History | Annotate | Download | only in app

Lines Matching full:tickertext

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) {
787 that.tickerText = this.tickerText.toString();
910 if (tickerText != null) {
912 TextUtils.writeToParcel(tickerText, parcel, flags);
1019 builder.setTicker(this.tickerText);
1397 * @see Notification#tickerText
1399 public Builder setTicker(CharSequence tickerText) {
1400 mTickerText = safeCharSequence(tickerText);
1409 * @see Notification#tickerText
1412 public Builder setTicker(CharSequence tickerText
1413 mTickerText = safeCharSequence(tickerText);
1804 n.tickerText = mTickerText;