Home | History | Annotate | Download | only in app

Lines Matching defs:tickerText

183     public CharSequence tickerText;
512 public Notification(Context context, int icon, CharSequence tickerText, long when,
517 this.tickerText = tickerText;
527 * @param tickerText The text that flows by in the status bar when the notification first
535 public Notification(int icon, CharSequence tickerText, long when)
538 this.tickerText = tickerText;
559 tickerText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(parcel);
614 if (this.tickerText != null) {
615 that.tickerText = this.tickerText.toString();
695 if (tickerText != null) {
697 TextUtils.writeToParcel(tickerText, parcel, flags);
1161 * @see Notification#tickerText
1163 public Builder setTicker(CharSequence tickerText) {
1164 mTickerText = tickerText;
1173 * @see Notification#tickerText
1176 public Builder setTicker(CharSequence tickerText, RemoteViews views) {
1177 mTickerText = tickerText;
1556 n.tickerText = mTickerText;