BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 05-15-2008, 07:56 PM   #1
skynetchris
Knows Where the Search Button Is
 
Join Date: Apr 2008
Model: 7100T
PIN: N/A
Carrier: optus
Posts: 24
Default catch red/hangup button

Please Login to Remove!

Hi guys,

I have a program that should always popup a password screen when it starts up. The problem is that pressing the red hangup button simply puts the program into background, so the next person who opens it WONT be prompted for the password.

I'm trying to catch the KEY_END event and close the application (as per this thread).

Using this method:

Code:
class Password extends PopupScreen implements
   KeyListener, TrackwheelListener {
...
  public boolean keyDown (int keycode, int time){
       switch (keycode)
       {
            case 1179648:
                close();
                break; 
       }
    return false;
    }
It does SEEM to be possible, as this user points out in a therad at the end.

I've tried both methods (KEY_END and 1179648) Neither closing the application.

Any ideas?
Offline  
Old 05-16-2008, 05:44 AM   #2
jfisher
CrackBerry Addict
 
Join Date: Jun 2005
Location: Manchester, UK
Model: BOLD
Carrier: t-mobile
Posts: 714
Default

put your password popup or whatever in the activate method of UiApplcation:

Code:
public class myApp extends UiApplication {

 public static void main(String[] args) {
        myApp instance = new myApp();
        instance.enterEventDispatcher();
    }

public void activate() {
//push password prompt
}

}
'Handles foregrounding event.

The system invokes this method when it brings this application to the foreground. By default, this method does nothing. Override this method to perform additional processing when being brought to the foreground.'
__________________
new job doesn't allow a public profile - please do not contact this user with questions, you will not get a response. good luck!

Last edited by jfisher; 05-16-2008 at 05:45 AM..
Offline  
Old 05-18-2008, 10:44 PM   #3
skynetchris
Knows Where the Search Button Is
 
Join Date: Apr 2008
Model: 7100T
PIN: N/A
Carrier: optus
Posts: 24
Default

That did the trick, thanks. Incase anyone comes across this problem, be sure to check there are no screens open before you prompt for password. Pretty easy:

Code:
    public void activate() {
    if(pWord.getContents() != null)
    {
        while(this.getScreenCount() > 1)
        {
            this.popScreen();
        }
        //Push password prompt because we've been put into background
        password = new Password();
        UiApplication.getApplication().invokeLater(new Runnable() {
            public void run(){
                UiApplication.getUiApplication().pushModalScreen(password);
            }
        });
    }
    }
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


Square D 2510-KW2H 2510KW2H Manual Motor Starting Switch USED picture

Square D 2510-KW2H 2510KW2H Manual Motor Starting Switch USED

$65.88



ELECTRIC COOLING FAN GROUND-ING THERMO-STAT SWITCH RADIATOR TEMP-ERATURE SENSOR picture

ELECTRIC COOLING FAN GROUND-ING THERMO-STAT SWITCH RADIATOR TEMP-ERATURE SENSOR

$17.99



Square D by Schneider Electric 9013FHG12J52M1X Air-Compressor Pressure Switch... picture

Square D by Schneider Electric 9013FHG12J52M1X Air-Compressor Pressure Switch...

$34.71



Square D D223NRB General Duty Safety Switch, Type 3R NEMA, 100Amp picture

Square D D223NRB General Duty Safety Switch, Type 3R NEMA, 100Amp

$175.99



Westinghouse Fusible Busway Disconnect Switch Bus Plug 30A 600VAC 3PH 3W picture

Westinghouse Fusible Busway Disconnect Switch Bus Plug 30A 600VAC 3PH 3W

$374.99



BoltSwitch PT224 (head only) 200amp 2 Pole picture

BoltSwitch PT224 (head only) 200amp 2 Pole

$265.00







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