I'm still working on BB. I was managed to show Contact List and then select a contact item from it. I implement this on a MainScreen. Below is my code:
list = (BlackBerryContactList) PIM.getInstance()
.openPIMList(PIM.CONTACT_LIST, PIM.READ_ONLY);
PIMItem contact = list.choose();
if (contact != null) {
Vector numbers = new Vector();
for (int i = 0; i < contact.countValues(Contact.TEL); i++) {
selectedMobileNumber = contact.getString(
Contact.TEL, i);
numbers.addElement(selectedMobileNumber);
}
ListPopupScreen listPopupScreen = new ListPopupScreen(
FormScreen.this, numbers);
UiApplication.getUiApplication().pushScreen(
listPopupScreen);
System.out.println("OKEEEEEE " + selectedMobileNumber);
}
Sometimes a contact item has more than one phone numbers so that i have to show an overriden SopupScreen to list all phone numbers. The question is how to commit data i have selected from so called ListPopupScreen so that the number would be shown on a MainScreen i use?
ListPopupScreenneeds to be modified to support the feature. So, you need to share the code of that class. – Rupak Sep 12 '12 at 17:08