Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 356735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T12:08:23+00:00 2026-05-12T12:08:23+00:00

I have a BlackBerry app running in the background that needs to know when

  • 0

I have a BlackBerry app running in the background that needs to know when a “Missed call” system dialog is brought up by the system, and programmatically close it without user intervention. How can I do that?

I could actually almost know when the dialog is brought up, i.e. a little later I programmatically end the call…but how can I get a reference to the dialog, and close it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T12:08:23+00:00Added an answer on May 12, 2026 at 12:08 pm

    Key press injection for device Close button looks like this:

    KeyEvent inject = new KeyEvent(KeyEvent.KEY_DOWN, Characters.ESCAPE, 0);
    inject.post();
    

    Don’t forget to set permissions for device release:
    Options => Advanced Options => Applications => [Your Application] =>Edit Default permissions =>Interactions =>key stroke Injection

    May be useful:
    BlackBerry – Simulate a KeyPress event

    Code sample:

    class Scr extends MainScreen implements PhoneListener {
        public Scr() {
            Phone.addPhoneListener(this);
        }
    
        public boolean onClose() {
            Phone.removePhoneListener(this);
            return super.onClose();
        }
    
        public void callDisconnected(int callId) {
            Timer timer = new Timer();
            timer.schedule(new TimerTask(){public void run() {
                KeyEvent event = new KeyEvent(KeyEvent.KEY_DOWN,  
                            Characters.ESCAPE, 
                            KeyListener.STATUS_NOT_FROM_KEYPAD);
                event.post();
            }}, 1000);      
        }
    
        public void callAdded(int callId) {
        }
    
        public void callAnswered(int callId) {
        }
    
        public void callConferenceCallEstablished(int callId) {
        }
    
        public void callConnected(int callId) {
        }
    
        public void callDirectConnectConnected(int callId) {    
        }
    
        public void callDirectConnectDisconnected(int callId) {
        }
    
        public void callEndedByUser(int callId) {
        }
    
        public void callFailed(int callId, int reason) {
        }
    
        public void callHeld(int callId) {
        }
    
        public void callIncoming(int callId) {
        }
    
        public void callInitiated(int callid) {
        }
    
        public void callRemoved(int callId) {
        }
    
        public void callResumed(int callId) {   
        }
    
        public void callWaiting(int callid) {
        }
    
        public void conferenceCallDisconnected(int callId) {
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a BlackBerry app running in the background that needs to know when
I have a BlackBerry app that, when installed, needs to also copy over some
I have a blackberry app that I need to test on windows NOT on
I have a BlackBerry app that I am about to port to the iPhone.
I have been running my blackberry app on the simulator. I have use deviceside=true
We have a Blackberry app that is installed by users OTA. The install works
I have a python app running fine on Windows, Linux and Mac which I
I would like to create a new Blackberry app and i dont know where
I have a new web app that is packaged as a WAR as part
Hey all, i want to integrate my Blackberry App with Twitter, and found that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.