Home | History | Annotate | Download | only in app

Lines Matching refs:Importance

24 import android.app.NotificationManager.Importance;
62 private static final String ATT_IMPORTANCE = "importance";
155 * @param importance The importance of the channel. This controls how interruptive notifications
158 public NotificationChannel(String id, CharSequence name, @Importance int importance) {
161 this.mImportance = importance;
343 * audio attributes. Notification channels with an {@link #getImportance() importance} of at
405 * @param importance the amount the user should be interrupted by
408 public void setImportance(@Importance int importance) {
409 this.mImportance = importance;
456 * Returns the user specified importance e.g. {@link NotificationManager#IMPORTANCE_LOW} for
570 // Name, id, and importance are set in the constructor.