Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to display custom image and text on PhoneScreen every time an outgoing call happens. I have implemented the PhoneListener interface and tried the following code:

    PhoneScreen phoneScreen = new PhoneScreen(callId, app);
    phoneScreen.deleteAll(); // Empty the default PhoneScreen

    phoneScreen.setScreenBackground(0xFF0000);
    phoneScreen.setScreenBackground(0x00FF00);

    BitmapField bmf = new BitmapField(Bitmap.getBitmapResource("img.png"), Field.FIELD_TOP);
    LabelField labelField = new LabelField("Location");

    PhoneScreenVerticalManager psvm = new PhoneScreenVerticalManager();
    psvm.add(bmf);
    psvm.add(labelField);

    phoneScreen.add(psvm);
    phoneScreen.sendDataToScreen();

The program crashes because of second line where I try to empty the default PhoneScreen. If I comment that line out then it displays the image at the bottom portion of the PhoneScreen while retaining every other fields from the default PhoneScreen.

I want to delete all the fields from default PhoneScreen and add custom fields. Thanks in advance for any help!

share|improve this question
add a try catch around phoneScreen.deleteAll() and log out the exception – rfsk2010 Feb 23 '12 at 11:19
"Manager is empty." and phoneScreen.getFieldCount() is returning 0. Just curious, how can the default PhoneScreen be empty? – devnull Feb 23 '12 at 11:31

2 Answers

up vote 1 down vote accepted

A hackish solution: Inside the PhoneListener implementation, get the currently active screen and use it as the PhoneScreen. And then empty the screen so that you can add your own fields.

Something like:

    Screen phoneScreen = UiApplication.getUiApplication().getActiveScreen();
    phoneScreen.deleteAll();
    // Add your own fields to phoneScreen now
share|improve this answer

Remove the call to phoneScreen.deleteAll().

When the aforementioned line is executed, a RuntimeException exception is thrown with "Manager is empty." message.

If you are using BlackBerry API version 6.0 and up consider using ScreenModel#getPhoneScreen() instead of PhoneScreen() as the later is deprecated. Check this development guide for more information.

Edit: IMHO it is not possible to completely customize the PhoneScreen and the default "fields" (not sure that they are even fields) such as picture, phone number and etc, will always appear before the fields that were added programmatically.

share|improve this answer
In fact, I am using ScreenModel#getPhoneScreen(). But I have pasted only the code of PhoneScreen modification here. – devnull Feb 23 '12 at 11:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.