Home | History | Annotate | Download | only in app

Lines Matching refs:tickerText

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) {
662 that.tickerText = this.tickerText.toString();
785 if (tickerText != null) {
787 TextUtils.writeToParcel(tickerText, parcel, flags);
894 builder.setTicker(this.tickerText);
1272 * @see Notification#tickerText
1274 public Builder setTicker(CharSequence tickerText) {
1275 mTickerText = safeCharSequence(tickerText);
1284 * @see Notification#tickerText
1287 public Builder setTicker(CharSequence tickerText, RemoteViews views) {
1288 mTickerText = safeCharSequence(tickerText);
1672 n.tickerText = mTickerText;