Lines Matching refs:title

195      * Notification extras key: this is the title of the notification,
198 public static final String EXTRA_TITLE = "android.title";
201 * Notification extras key: this is the title of the notification when shown in expanded form,
979 * Set the title (first row) of the notification, in a standard notification.
981 public Builder setContentTitle(CharSequence title) {
982 mContentTitle = limitCharSequenceLength(title);
1428 * @param title Text describing the action.
1431 public Builder addAction(int icon, CharSequence title, PendingIntent intent) {
1432 mActions.add(new Action(icon, title, intent));
1611 public BigPictureStyle setBigContentTitle(CharSequence title) {
1612 mBigContentTitle = Builder.limitCharSequenceLength(title);
1678 public BigTextStyle setBigContentTitle(CharSequence title) {
1679 mBigContentTitle = Builder.limitCharSequenceLength(title);
1740 public InboxStyle setBigContentTitle(CharSequence title) {
1741 mBigContentTitle = Builder.limitCharSequenceLength(title);
1783 public CharSequence title;
1790 public Action(int icon, CharSequence title, PendingIntent intent) {
1791 this(icon, title, intent, new Bundle(), null);
1794 private Action(int icon, CharSequence title, PendingIntent intent, Bundle extras,
1797 this.title = NotificationCompat.Builder.limitCharSequenceLength(title);
1810 return title;
1848 * @param title the title of the action
1851 public Builder(int icon, CharSequence title, PendingIntent intent) {
1852 this(icon, title, intent, new Bundle());
1861 this(action.icon, action.title, action.actionIntent, new Bundle(action.mExtras));
1864 private Builder(int icon, CharSequence title, PendingIntent intent, Bundle extras) {
1866 mTitle = NotificationCompat.Builder.limitCharSequenceLength(title);
2137 public Action build(int icon, CharSequence title,
2140 return new Action(icon, title, actionIntent, extras,