Lines Matching defs:category

88             = "android.intent.category.NOTIFICATION_PREFERENCES";
572 * Notification category: incoming call (voice or video) or similar synchronous communication request.
577 * Notification category: incoming direct message (SMS, instant message, etc.).
582 * Notification category: asynchronous bulk message (email).
587 * Notification category: calendar event.
592 * Notification category: promotion or advertisement.
597 * Notification category: alarm or timer.
602 * Notification category: progress of a long-running background operation.
607 * Notification category: social network or sharing update.
612 * Notification category: error in background operation or authentication status.
617 * Notification category: media transport control for playback.
622 * Notification category: system or device status update. Reserved for system use.
627 * Notification category: indication of running background service.
632 * Notification category: a specific, timely recommendation for a single thing.
639 * Notification category: ongoing information about device or contextual status.
647 public String category;
1397 category = parcel.readString();
1481 that.category = this.category;
1651 parcel.writeString(category);
1794 if (this.category != null) {
1795 sb.append(" category=");
1796 sb.append(this.category);
2474 * Set the notification category.
2476 * @see Notification#category
2478 public Builder setCategory(String category) {
2479 mCategory = category;
3181 n.category = mCategory;
3424 mCategory = n.category;
4127 * Notifications created with MediaStyle will have their category set to
4129 * category using {@link Notification.Builder#setCategory(String) setCategory()}.
4191 if (wip.category == null) {
4192 wip.category = Notification.CATEGORY_TRANSPORT;