BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 05-05-2008, 07:52 PM   #1
skynetchris
Knows Where the Search Button Is
 
Join Date: Apr 2008
Model: 7100T
PIN: N/A
Carrier: optus
Posts: 24
Default Screen not updating

Please Login to Remove!

Hi guys, can anyone spot whats wrong, why does my invocation of 'app.showMessage', not update the screen? I really don't understand screens, an explanation would be much appreciated.

Code:
import net.rim.device.api.ui.*;
import net.rim.device.api.ui.component.*;
import net.rim.device.api.ui.container.*;
import net.rim.device.api.system.*;



public class HelloApp extends UiApplication {
    //Screen instance
    HelloScreen screen;
    
    public static void main(String argv[]) {
        HelloApp app = new HelloApp();
        app.enterEventDispatcher();
        app.showMessage("Screen updated!");
    }

    public HelloApp() {
        screen = new HelloScreen();
        pushScreen(screen);
    }
    
    public void showMessage(final String msg){
       UiApplication.getApplication().invokeLater(new Runnable() {
          public void run(){
             //Display dialog with message.
             Dialog.alert(msg);
             //force repaint of screen.
             screen.invalidate();
          }
       }); 
    }

}//End of Hello App class

class HelloScreen extends MainScreen {
    public HelloScreen() {
         LabelField title = new LabelField
         ("Sms reciever", LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH);
        setTitle(title);
        RichTextField text = new RichTextField("Waiting for sms...\n");
        add(text);
    }
}//End of HelloScreen class

---Update---

Just a quick update, it does seem that event dispatcher blocks? If I try the following:

Code:
    public static void main(String argv[]) {
        HelloApp app = new HelloApp();
        app.showMessage("Screen updated 1");
        app.enterEventDispatcher();
        app.showMessage("Screen updated 2");
    }
I get the first dialog message and not the second. Can anyone explain to me why this is? How would I got about getting the second message to display?

Last edited by skynetchris; 05-05-2008 at 09:39 PM.. Reason: Update
Offline  
Old 05-06-2008, 02:29 AM   #2
simon.hain
CrackBerry Addict
 
Join Date: Apr 2005
Location: hamburg, germany
Model: 8900
Carrier: o2
Posts: 838
Default

if you use dialog you push a new, modal screen. you don't have to invalidate your screen as there is nothing changed on it.

Quote:
public void enterEventDispatcher()
Enters the event dispatcher.

The thread that calls this method (typically the main thread in the application) becomes the event-dispatching thread, which will execute all drawing and event-handling code.

Note that under normal circumstances this method does not return.
As the method does not return everything below is never executed. Put your code into the constructor of your application to get it executed.
__________________
java developer, Devinto, hamburg/germany
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


OEM Dell XPS 8910 8920 8930 Alienware Aurora R5 R6 R7 Front Cooling Fan 7M0F5 picture

OEM Dell XPS 8910 8920 8930 Alienware Aurora R5 R6 R7 Front Cooling Fan 7M0F5

$13.81



NEW DELL OEM REPLACEMENT PROJECTOR LAMP FOR 4220 4320 GENUINE ORIGINAL  picture

NEW DELL OEM REPLACEMENT PROJECTOR LAMP FOR 4220 4320 GENUINE ORIGINAL

$198.22



OEM Dell Precision M3800 XPS 15.6

OEM Dell Precision M3800 XPS 15.6" 15-9530 CPU Left Fan 2PH36 NIA01 DC28000DQF0

$9.99



Dell OEM Latitude Rugged Extreme 7404 Docking Connector Circuit Board picture

Dell OEM Latitude Rugged Extreme 7404 Docking Connector Circuit Board

$14.95



DELL 330-6581 3306581 725-10229 OEM LAMP FOR 1510X 1610HD 1610X  - Made By DELL picture

DELL 330-6581 3306581 725-10229 OEM LAMP FOR 1510X 1610HD 1610X - Made By DELL

$39.98



Genuine Dell OEM G Series G7 7790 CPU and Graphics Heatsink Assembly XRF05 picture

Genuine Dell OEM G Series G7 7790 CPU and Graphics Heatsink Assembly XRF05

$20.30







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.