OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inboxstyle
(Results
1 - 25
of
47
) sorted by null
1
2
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
NotificationGenerator.java
48
import android.support.v4.app.NotificationCompat.
InboxStyle
;
117
InboxStyle
inboxStyle
= new NotificationCompat.
InboxStyle
();
120
inboxStyle
.addLine(line);
124
inboxStyle
.setBigContentTitle(BIG_CONTENT_TITLE.getValueString());
126
inboxStyle
.setSummaryText(SUMMARY_TEXT.getValueString());
127
builder.setStyle(
inboxStyle
);
CodeGenerator.java
102
sb.append(INDENT + ".setStyle(new Notification.
InboxStyle
()");
/frameworks/base/docs/html/sdk/api_diff/19/changes/
android.app.Notification.InboxStyle.html
10
android.app.Notification.
InboxStyle
74
Class android.app.<A HREF="../../../../reference/android/app/Notification.
InboxStyle
.html" target="_top"><font size="+2"><code>Notification.
InboxStyle
</code></font></A>
86
<A NAME="android.app.Notification.
InboxStyle
.build_changed()"></A>
87
<nobr><code>Notification</code> <A HREF="../../../../reference/android/app/Notification.
InboxStyle
.html#build()" target="_top"><code>build</code></A>() </nobr>
pkg_android.app.html
162
<A NAME="Notification.
InboxStyle
"></A>
163
<nobr><A HREF="android.app.Notification.
InboxStyle
.html">Notification.
InboxStyle
</A></nobr>
methods_index_changes.html
68
<nobr><A HREF="android.app.Notification.
InboxStyle
.html#android.app.Notification.
InboxStyle
.build_changed()" class="hiddenlink" target="rightframe">type
69
() in android.app.Notification.
InboxStyle
alldiffs_index_changes.html
237
<nobr><A HREF="android.app.Notification.
InboxStyle
.html#android.app.Notification.
InboxStyle
.build_changed()" class="hiddenlink" target="rightframe">type
238
() in android.app.Notification.
InboxStyle
[
all
...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
NotificationController.java
20
import android.app.Notification.
InboxStyle
;
182
InboxStyle
inboxStyle
= new
InboxStyle
();
183
inboxStyle
.setBigContentTitle(String.format(mContext.getResources().getQuantityText(
196
inboxStyle
.addLine(computeNotificationTitle(printJob));
200
builder.setStyle(
inboxStyle
);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotifier.java
266
final Notification.
InboxStyle
inboxStyle
= new Notification.
InboxStyle
(builder);
269
inboxStyle
.addLine(getDownloadTitle(res, info));
277
inboxStyle
.setSummaryText(remainingText);
284
inboxStyle
.setSummaryText(
288
notif =
inboxStyle
.build();
/frameworks/support/v4/jellybean/android/support/v4/app/
NotificationCompatJellybean.java
91
Notification.
InboxStyle
style = new Notification.
InboxStyle
(b)
/frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java
132
} else if (b.mStyle instanceof
InboxStyle
) {
133
InboxStyle
style = (
InboxStyle
) b.mStyle;
772
* .setStyle(new Notification.
InboxStyle
()
782
public static class
InboxStyle
extends Style {
785
public
InboxStyle
() {
788
public
InboxStyle
(Builder builder) {
796
public
InboxStyle
setBigContentTitle(CharSequence title) {
804
public
InboxStyle
setSummaryText(CharSequence cs) {
813
public
InboxStyle
addLine(CharSequence cs)
[
all
...]
/sdk/apps/NotificationStudio/res/values/
strings.xml
53
<string name="style_inbox">
InboxStyle
</string>
/frameworks/base/docs/html/sdk/api_diff/16/changes/
pkg_android.app.html
119
<A NAME="Notification.
InboxStyle
"></A>
120
<nobr><A HREF="../../../../reference/android/app/Notification.
InboxStyle
.html" target="_top"><code>Notification.
InboxStyle
</code></A></nobr>
classes_index_additions.html
158
<A HREF="pkg_android.app.html#Notification.
InboxStyle
" class="hiddenlink" target="rightframe"><b>Notification.
InboxStyle
</b></A><br>
/packages/apps/Mms/src/com/android/mms/transaction/
MessagingNotification.java
434
// This is the message string used in each line of an
inboxStyle
notification.
[
all
...]
/frameworks/base/core/java/android/app/
Notification.java
539
* {@link #extras} key: An array of CharSequences to show in {@link
InboxStyle
} expanded
540
* notifications, each of which was supplied to {@link
InboxStyle
#addLine(CharSequence)}.
[
all
...]
/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java
199
mNotifications.add(new NotificationCompat.
InboxStyle
(
/prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0-javadoc.jar
support-v4-13.0.0.jar
/frameworks/base/docs/html/guide/topics/ui/notifiers/
notifications.jd
354
NotificationCompat.
InboxStyle
inboxStyle
=
355
new NotificationCompat.
InboxStyle
();
358
inboxStyle
.setBigContentTitle("Event tracker details:");
363
inboxStyle
.addLine(events[i]);
366
mBuilder.setStyle(
inBoxStyle
);
[
all
...]
/prebuilts/maven_repo/android/com/android/support/support-v4/18.0.0/
support-v4-18.0.0-javadoc.jar
/prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/
support-v4-19.0.0-javadoc.jar
/development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar
/development/samples/training/InteractiveChart/libs/
android-support-v4.jar
/sdk/apps/NotificationStudio/libs/
android-support-v4.jar
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java
498
Notification.
InboxStyle
expandedBuilder = new Notification.
InboxStyle
();
[
all
...]
Completed in 2145 milliseconds
1
2