Home | History | Annotate | Download | only in notification

Lines Matching defs:importance

1416         private @NotificationManager.Importance int mImportance;
1489 * Returns the importance of the notification, which dictates its
1492 * @return the importance of the notification
1494 public @NotificationManager.Importance int getImportance() {
1499 * If the importance has been overridden by user preference, then this will be non-null,
1502 * @return the explanation for the importance, or null if it is the natural importance
1582 int visibilityOverride, int suppressedVisualEffects, int importance,
1589 mIsAmbient = importance < NotificationManager.IMPORTANCE_LOW;
1593 mImportance = importance;
1607 public static String importanceToString(int importance) {
1608 switch (importance) {
1623 return "UNKNOWN(" + String.valueOf(importance) + ")";
1734 Integer importance = mImportance.get(key);
1735 if (importance == null) {
1738 return importance.intValue();
1854 int[] importance = mRankingUpdate.getImportance();
1858 mImportance.put(key, importance[i]);