Searched defs:importance (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Settings/src/com/android/settings/notification/
H A DChannelNotificationSettings.java60 private static final String KEY_IMPORTANCE = "importance";
259 int importance = 0;
261 importance = isChecked ? IMPORTANCE_UNSPECIFIED : IMPORTANCE_NONE;
262 mImportanceToggle.setChecked(importance == IMPORTANCE_UNSPECIFIED);
264 importance = isChecked ? IMPORTANCE_LOW : IMPORTANCE_NONE;
265 mImportance.setSummary(getImportanceSummary(importance));
267 mChannel.setImportance(importance);
293 // Set up intent to show importance selection only if this setting is enabled.
304 private String getImportanceSummary(int importance) { argument
307 switch (importance) {
[all...]

Completed in 563 milliseconds