views:

33

answers:

1

I need to code that returns how many unread emails are in the inbox on a BlackBerry.

+1  A: 

try this

Store store = Session.getDefaultInstance().getStore(); 
int numUnread = store.getUnreadMessageCount();
Vivart