OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CONTENT_TITLE
(Results
1 - 4
of
4
) sorted by null
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
EditableItem.java
32
CONTENT_TITLE
(R.string.
content_title
, TYPE_TEXT, CATEGORY_MAIN),
140
CONTENT_TITLE
.setValue("Basic title");
145
CONTENT_TITLE
.setValue("3 new messages");
154
CONTENT_TITLE
.setValue("Sunset on the rocks");
/cts/tests/app/src/android/app/cts/
NotificationTest.java
34
private static final String
CONTENT_TITLE
= "contentTitle";
158
.setContentTitle(
CONTENT_TITLE
)
163
assertEquals(
CONTENT_TITLE
, mNotification.extras.getString(Notification.EXTRA_TITLE));
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
CodeGenerator.java
28
import static com.android.notificationstudio.model.EditableItem.
CONTENT_TITLE
;
57
if (
CONTENT_TITLE
.hasValue())
58
sb.append(INDENT + ".setContentTitle(" + quote(
CONTENT_TITLE
) + ")");
NotificationGenerator.java
28
import static com.android.notificationstudio.model.EditableItem.
CONTENT_TITLE
;
61
if (
CONTENT_TITLE
.hasValue())
62
builder.setContentTitle(
CONTENT_TITLE
.getValueString());
Completed in 919 milliseconds