Home
last modified time | relevance | path

Searched refs:CONTENT_TITLE (Results 1 – 3 of 3) sorted by relevance

/sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
DEditableItem.java32 CONTENT_TITLE(R.string.content_title, TYPE_TEXT, CATEGORY_MAIN), enumConstant
140 CONTENT_TITLE.setValue("Basic title"); in applyPreset()
145 CONTENT_TITLE.setValue("3 new messages"); in applyPreset()
154 CONTENT_TITLE.setValue("Sunset on the rocks"); in applyPreset()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
DNotificationGenerator.java28 import static com.android.notificationstudio.model.EditableItem.CONTENT_TITLE;
61 if (CONTENT_TITLE.hasValue()) in build()
62 builder.setContentTitle(CONTENT_TITLE.getValueString()); in build()
DCodeGenerator.java28 import static com.android.notificationstudio.model.EditableItem.CONTENT_TITLE;
57 if (CONTENT_TITLE.hasValue()) in generate()
58 sb.append(INDENT + ".setContentTitle(" + quote(CONTENT_TITLE) + ")"); in generate()