OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:notificationAction
(Results
1 - 2
of
2
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationActionUtils.java
63
* If an {@link
NotificationAction
} exists here for a given notification key, then we should
66
public static final ObservableSparseArrayCompat<
NotificationAction
> sUndoNotifications =
67
new ObservableSparseArrayCompat<
NotificationAction
>();
207
for (final NotificationActionType
notificationAction
: sortedActions) {
210
folder, notificationIntent,
notificationAction
, notificationId, when);
211
final int actionIconResId =
notificationAction
.getActionIconResId(folder, conversation,
213
final String title = context.getString(
notificationAction
.getDisplayStringResId(
223
folder, notificationIntent,
notificationAction
, notificationId, when);
227
mapWearActionResId(
notificationAction
, actionIconResId), title,
230
if (
notificationAction
== NotificationActionType.REPL
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/
NotificationActionIntentService.java
32
import com.android.mail.utils.NotificationActionUtils.
NotificationAction
;
71
private static void logNotificationAction(String intentAction,
NotificationAction
action) {
96
* to add some extra data, it must unparcel the
NotificationAction
object. It throws a
100
final
NotificationAction
notificationAction
;
106
notificationAction
=
NotificationAction
.CREATOR.createFromParcel(in,
107
NotificationAction
.class.getClassLoader());
109
LogUtils.wtf(LOG_TAG, "data was null trying to unparcel the
NotificationAction
");
113
final Message message =
notificationAction
.getMessage()
[
all
...]
Completed in 594 milliseconds