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


BECO Universal Impedance Bridge Model 315A, Brown Electro Measurement Corp. 315A picture

BECO Universal Impedance Bridge Model 315A, Brown Electro Measurement Corp. 315A

$139.00



TC ESI Impedance Bridge Model 250-DA Serial 1394 Electro-MeasurementS Oregon USA picture

TC ESI Impedance Bridge Model 250-DA Serial 1394 Electro-MeasurementS Oregon USA

$69.99



Digital Ohmmeter LCD Audio Impedance Test Meter Speaker Voice Resistor System picture

Digital Ohmmeter LCD Audio Impedance Test Meter Speaker Voice Resistor System

$56.99



IMPEDENCE MATCHING TRANSFOMER BNC F-BNC F, 50 OHM TO 75 OHM, 20-1100 MHZ picture

IMPEDENCE MATCHING TRANSFOMER BNC F-BNC F, 50 OHM TO 75 OHM, 20-1100 MHZ

$28.00



HP-Agilent-Keysight 41951-69001/ 41951-61001 Impedance Test Adapter for 41951A picture

HP-Agilent-Keysight 41951-69001/ 41951-61001 Impedance Test Adapter for 41951A

$450.00



Vintage Organic Impedance Measuring Control Panel AC-4 by CEFCO EXPERIMENTAL picture

Vintage Organic Impedance Measuring Control Panel AC-4 by CEFCO EXPERIMENTAL

$219.99







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