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!