Home | History | Annotate | Download | only in lnotifications

Lines Matching defs:Category

49  * priority data, notification category and person data.
129 Category selectedCategory = (Category) mCategorySpinner.getSelectedItem();
135 ArrayAdapter<Category> categoryArrayAdapter = new ArrayAdapter<Category>(getActivity(),
136 android.R.layout.simple_spinner_item, Category.values());
175 * @param category The category metadata.
181 Notification createNotification(Priority priority, Category category, Uri contactUri) {
186 .setCategory(category.value)
187 .setContentText(String.format("Category %s, Priority %s", category.value,
204 * @param category The category metadata.
207 private void showNotificationClicked(Priority priority, Category category, Uri contactUri) {
212 category, contactUri));
299 static enum Category {
317 Category(String value) {