Searched defs:unreadCount (Results 1 - 4 of 4) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/adapter/
H A DDrawerItem.java183 * @param unreadCount the unread count of the account, pass zero if
188 int unreadCount, boolean isCurrentAccount, BitmapCache cache,
190 return new DrawerItem(VIEW_ACCOUNT, activity, null, ACCOUNT, account, unreadCount,
187 ofAccount(ControllableActivity activity, Account account, int unreadCount, boolean isCurrentAccount, BitmapCache cache, ContactResolver contactResolver) argument
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DFolder.java123 public int unreadCount; field in class:Folder
275 public Builder setUnreadCount(final int unreadCount) { argument
276 mUnreadCount = unreadCount;
339 int unseenCount, int unreadCount, int totalCount, Uri refreshUri, int syncStatus,
353 this.unreadCount = unreadCount;
392 unreadCount = cursor.getInt(UIProvider.FOLDER_UNREAD_COUNT_COLUMN);
452 unreadCount = in.readInt();
489 dest.writeInt(unreadCount);
883 f.unreadCount
337 Folder(int id, String persistentId, Uri uri, String name, int capabilities, boolean hasChildren, int syncWindow, Uri conversationListUri, Uri childFoldersListUri, int unseenCount, int unreadCount, int totalCount, Uri refreshUri, int syncStatus, int lastSyncResult, int type, int iconResId, int notificationIconResId, String bgColor, String fgColor, Uri loadMoreUri, String hierarchicalDesc, Uri parent, final long lastMessageTimestamp, final String unreadSenders) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationUtils.java294 final Integer unreadCount = getUnread(key);
296 if (unreadCount != null && unseenCount != null) {
299 unreadCount.toString(), unseenCount.toString()};
476 public static void sendSetNewEmailIndicatorIntent(Context context, final int unreadCount, argument
485 intent.putExtra(EXTRA_UNREAD_COUNT, unreadCount);
498 public static void setNewEmailIndicator(Context context, final int unreadCount, argument
501 LogUtils.d(LOG_TAG, "setNewEmailIndicator unreadCount = %d, unseenCount = %d, account = %s,"
502 + " folder = %s, getAttention = %b", unreadCount, unseenCount,
512 if (unreadCount == 0) {
523 unreadCount, unseenCoun
852 createPublicNotification(Context context, Account account, Folder folder, long when, int unseenCount, int unreadCount, PendingIntent clickIntent) argument
989 configureLatestEventInfoFromConversation(final Context context, final Account account, final FolderPreferences folderPreferences, final NotificationCompat.Builder notification, final NotificationCompat.WearableExtender wearableExtender, final Map<Integer, NotificationBuilders> msgNotifications, final int summaryNotificationId, final Cursor conversationCursor, final PendingIntent clickIntent, final Intent notificationIntent, final int unreadCount, final int unseenCount, final Folder folder, final long when, final ContactPhotoFetcher photoFetcher) argument
[all...]
H A DUtils.java373 public static String getUnreadCountString(Context context, int unreadCount) { argument
379 if (unreadCount > sMaxUnreadCount) {
385 } else if (unreadCount <= 0) {
389 unreadCountString = String.format("%d", unreadCount);
424 public static CharSequence getUnreadMessageString(Context context, int unreadCount) { argument
430 if (unreadCount > sMaxUnreadCount) {
435 R.plurals.actionbar_unread_messages, unreadCount, unreadCount));
974 return folder.unreadCount;

Completed in 268 milliseconds