Button side blackBerry 10 on P9983

There is the button alttle between the side on the P9983 volume controls.

What can I use for?

It's called a Mute button. It goes to mute calls and music, it is also used for BlackBerry Assistant, you can go into the Settings - Wizard BlackBerry and disable the button mute to activate BlackBerry Assistant.

Tags: BlackBerry Smartphones

Similar Questions

  • Does anyone know how to turn off this setting when your phone is at a certain angle turns on without you pressing the button side feed or House? Please if you know tell me!

    Does anyone know how to turn off this setting when your phone is at a certain angle turns on without you pressing the button side feed or House? Please if you know tell me!

    Settings > display and brightness > raise to Wake

  • Put 2 buttons side by side

    Hello

    I would like to put 2 buttons side by side on the same line in my GUI.

    I tried to do the following, but it didn't work:

    m_Button1 = new ButtonField(  "Back", FOCUSABLE | DrawStyle.ELLIPSIS |
                                  ButtonField.CONSUME_CLICK |
                                  FIELD_RIGHT);
    m_Button1.setChangeListener(this);
    
    m_Button2 = new ButtonField(  "Next", FOCUSABLE | DrawStyle.ELLIPSIS |
                                  ButtonField.CONSUME_CLICK |
                                  FIELD_LEFT);
    m_Button2.setChangeListener(this);
    
    HorizontalFieldManager mgrHrz = new HorizontalFieldManager();
    VerticalFieldManager mgrVertA = new VerticalFieldManager()
                       {
                            public int getPreferredWidth() {
                                return Display.getWidth() / 2;
                       }
                            };
    VerticalFieldManager mgrVertB = new VerticalFieldManager()
                       {
                            public int getPreferredWidth() {
                                return Display.getWidth() / 2;
                            }
                       };
    mgrVertA.add(m_Button1);
    mgrVertB.add(m_Button2);
    mgrHrz.add(mgrVertA);
    mgrHrz.add(mgrVertB);
    add(mgrHrz);
    

    Anyone know what I am doing wrong?

    THX.

    robybd wrote:

    Hello

    I would like to put 2 buttons side by side on the same line in my GUI.

    I tried to do the following, but it didn't work:

    Does anyone know what i am doing wrong?

    Thx.

    getPreferredWidth() do not get used the way you'd expect it.  You can override the sublayout() of these VFMs and USE_ALL_WIDTH.  Like this:

    ... = new VerticalFieldManager(USE_ALL_WIDTH) {
        protected void sublayout(int w, int h) {
            super.sublayout(Math.min(w, Display.getWidth() / 2), h);
        }
    };
    

    It should work better - try it!

  • How to create a button in Blackberry?

    I want to create a button through States: off (bitmap1) and, when clicked on it (bitmap2).

    I know how to focus and unFocus. But I want to change the image of the button when it is selected and maiitien this second bitmap.

    It is possible to do in Blackberry?

    This demo of the sample can help you: try this in a separate file;

    public final class LoadingScreen extends MainScreen
    {
        private boolean isClicked=false;
        BitmapField facebook;
        Bitmap facebookBit=Bitmap.getBitmapResource("f.png"),facebookBitHover=Bitmap.getBitmapResource("f_h.png");
        public LoadingScreen()
        {
            isClicked=false;
            createGUI();
        }
    
        private void createGUI()
        {
            add(new LabelField("Click the Below Image",Field.FOCUSABLE));
    
            facebook=new BitmapField(facebookBit,Field.FOCUSABLE)
            {
                protected boolean navigationClick(int status, int time)
                {
                    if(isClicked)
                    {
                        isClicked=false;
                        facebook.setBitmap(facebookBit);
                    }
                    else
                    {
                        isClicked=true;
                        facebook.setBitmap(facebookBitHover);
                    }
                    return super.navigationClick(status, time);
                }
            };
            add(facebook);
    
        }
    }
    

    ===========================================================================

    Do not hesitate to click LIKE button if the solution is correct;

  • a button for blackberry

    Hai all the...

    thaks for all now I mean little to us keypress on blackberry

    It is encoding for the kanpas.java class

     protected void keyPressed( int keycode )
        {
            switch( keycode )
            {
                //case -1://up
                case 1://up
                    switch (this.screen) {
                        case Kanpas.SCREEN_MAIN:
                            if(this.selected > 0)
                                this.selected--;
                            else
                                this.selected = 1;
                            this.repaint();
                            break;
                        case Kanpas.SCREEN_PLAYMIDI:
                            if( indexToStart > 0 )
                                indexToStart--;
                            this.repaint();
                            break;
                    }
                    break;
                //case -2://down
                case 6:
                    switch (this.screen) {
                        case Kanpas.SCREEN_MAIN:
                            if (this.selected < 1)
                                this.selected++;
                            else
                                this.selected = 0;
                            this.repaint();
                            break;
                        case Kanpas.SCREEN_PLAYMIDI:
                            if( indexToStart < vLyrics.size() - maxLine )
                            {
                                indexToStart++;
                            }
                            this.repaint();
                            break;
                    }
                    break;
                //case -3: //left
                case 2:
                    switch (this.screen) {
                        case Kanpas.SCREEN_MAIN:
                            if(this.selected > 0)
                                this.selected--;
                            else
                                this.selected = 1;
                            this.repaint();
                            break;
                        case Kanpas.SCREEN_PLAYMIDI:
                            if (this.volumeControl != null) {
                                int level = this.volumeControl.getLevel();
    
                                if (level > 0) {
                                    level -= 10;
    
                                    if (level < 0)
                                        level = 0;
                                    this.volumeControl.setLevel(level);
                                    this.left = true;
                                    this.right = false;
                                    this.repaint();
                                }
                            }
                            break;
                    }
                    break;
                //case -4: //right
                case 5:
                    switch (this.screen) {
                        case Kanpas.SCREEN_MAIN:
                            if (this.selected < 1)
                                this.selected++;
                            else
                                this.selected = 0;
                            this.repaint();
                            break;
                        case Kanpas.SCREEN_PLAYMIDI:
                            if (this.volumeControl != null) {
                                int level = this.volumeControl.getLevel();
    
                                if (level < 100) {
                                    if (level <= 0) {
                                        this.volumeControl.setMute(false);
                                        level = 10;
                                    }
                                    else {
                                        level += 10;
    
                                        if (level > 100)
                                            level = 100;
                                    }
                                    this.volumeControl.setLevel(level);
                                    this.left = false;
                                    this.right = true;
                                    this.repaint();
                                }
                            }
                            break;
                    }
                    break;
                //case -5://enter,middle button
                case 10:
                    switch (this.screen) {
                        case Kanpas.SCREEN_MAIN:
                            if( this.selected == 0 )
                            {   //play the song
                                playMidi();
                                this.screen = Kanpas.SCREEN_PLAYMIDI;
                                // added by masbudi
                                indexToStart=0;
                                repaint();
                            }
                            else
                            {
                                this.main_.InitMenu();
                                this.main_.display.setCurrent(this.main_.extraFun);
                                //this.parent.extraFun.keypressAction("ENTER", this.parent.extraFun.currentMenu, true);
                                this.main_.extraFun.keyPressAction("ENTER", this.main_.extraFun.currentMenu, true);
                            }
                            this.stopTimerScrollingText();
                            break;
                    }
                    break;
                //case -6://left-ok button
                case 113:
                    switch (this.screen) {
                        case Kanpas.SCREEN_MAIN:
                            this.screen = Kanpas.SCREEN_CLOSINGSPLASH;
                            if(splash!=null)
                                splash = null;
                            splash = new SplashScreen();
                            mokaIntro();
                            if(timer!=null)
                            {
                                timer.cancel();
                                timer = null;
                                splash=null;
                                headerAnim=null;
                            }
                            splash = new SplashScreen();
                            timer = new Timer();
                            timer.schedule(splash, 0, 250);
                            break;
                        case Kanpas.SCREEN_PLAYMIDI:
                            stop();
                            if(timer!=null)
                            {
                                timer.cancel();
                                timer = null;
                                splash=null;
                                headerAnim=null;
                            }
                            backToMain();
                            break;
                    }
                    break;
            }
        }
    
        protected void keyReleased(int keycode) {
            switch (keycode) {
                //case -3:
                case 2: //left
                    switch (this.screen) {
                        case Kanpas.SCREEN_PLAYMIDI:
                            this.left = false;
                            this.right = false;
                            this.repaint();
                            break;
                    }
                    break;
                //case -4:
                case 5://right
                    switch (this.screen) {
                        case Kanpas.SCREEN_PLAYMIDI:
                            this.left = false;
                            this.right = false;
                            this.repaint();
                            break;
                    }
                    break;
            }
        }
    

    and then it's for the appcanvas.java class

       protected void keyPressed(int keyCode) {
            if (this.isHTTPUpdateMenu && this.currentMenuUpdating != null ||
                    this.main_.isGetImage) {
                switch (keyCode) {
                    case -7:
                        this.keyPressedSoftkeyRight();
                        break;
                }
            }
            else {
                switch (keyCode) {
                    //case -1:
                    case 1: //up
                        switch (this.stateMenu) {
                            case AppCanvas.STATE_LISTMENU:
                                this.stopTimerRunningText();
                                this.keyPressedMenuUp();
                                break;
                        }
                        break;
                    case -2:
                    case 6: //down
                        switch (this.stateMenu) {
                            case AppCanvas.STATE_LISTMENU:
                                this.stopTimerRunningText();
                                this.keyPressedMenuDown();
                                break;
                        }
                        break;
                    //case -5:
                    case 10: //enter
                        switch (this.stateMenu) {
                            case AppCanvas.STATE_LISTMENU:
                                this.stopTimerRunningText();
                                this.keyPressedMenuEnter();
                               break;
                        }
                        break;
                    //case -6:
                    case 113://soft case left
                        if (this.isEmptyMenu) {
                            this.isEmptyMenu = false;
                            this.stopTimerRunningText();
                            this.stopTimerScrollingTitle();
                            this.keyPressedSoftkeyLeft();
                        }
                        else {
                            switch (this.stateMenu) {
                                case AppCanvas.STATE_LISTMENU:
                                case AppCanvas.STATE_SHOWCONFIRM:
                                case AppCanvas.STATE_VIEWTEXT:
                                case AppCanvas.STATE_SENDSMS:
                                    this.stopTimerRunningText();
                                    this.stopTimerScrollingTitle();
                                    this.keyPressedSoftkeyLeft();
                                    break;
                            }
                        }
                        break;
                    //case -7:
                    case 116: //right sofcase
                        switch (this.stateMenu) {
                            case AppCanvas.STATE_SHOWCONFIRM:
                                this.stopTimerRunningText();
                                this.stopTimerScrollingTitle();
                                this.keyPressedSoftkeyRight();
                                break;
                        }
                        break;
                }
            }
        }
    

    I hope all that can develop with blackberry.

    concerning

    Andi

    Thanks for sharing your code keypress. Its accurate once you said. As a result, are resolved.

  • Up button for blackBerry Smartphones

    The top on my Q5 button doesn't seem to work - I have to push several times (5-10) to get the screen to close - and sometimes holding, and often I find myself all just stop the device.  But if I leave the screen on, I find myself at Pocket-dialing.

    It becomes very frustrating, as I wait for the device to start the device whenever I want to make a phone call.

    The seller States that since it is a problem of 'material', I need to contact BBerry, but all I can find are these support forums, although people very friendly and helpful, are not the representatives of BBerry.

    How can I contact BBerry for this lemon out of my hands?  It did not work properly for more than a week since I got a year-and-a-half ago.

    Thanks for the info.  I pursued this because of them, but the problem is not with the service, it is with the hardware itself - and got absolutely no response from anyone in Blackberry on this subject.  They seem to be more interested in selling new units that keep the customers.

    I appreciate the time you took to answer.

    Take care.

    IBM

  • BlackBerry smartphones "sign in"button on BlackBerry World does not allow the connection of Firefox 23

    The website allows me to do a number of other activities, including recording successfully after clicking on the button 'register '. It's very strange. I have a few ideas.

    DoNotTrackMe 2.2.9.618 expansion was the culprit.

    Thank you for suggesting that the troubleshooting help!

  • Reset button of blackBerry Smartphones

    No one knows what made the small hole at the bottom of the unit. I want to reset my device as take out the battery. I don't want to continue to take the case to make. This button resets the device as take out the battery.

    This isn't a button... This is the microphone. I do not recommend ANYTHING to stop there.

    Remove the battery or get an app like SoftReset for the curve.

    But removing the battery works best.

  • Volume keys side blackBerry Smartphones

    I just got my new "BOLD" and the side volume keys do not work... it nothing happens when I touch them.

    Is there something that I need to enable to operate?

    Try pressing and pressing the Q key.

    The volume keys don't work that way.

  • Button lock button / Smartphone blackBerry on 9700

    Is it possible to disable the unlocking function of this button?

    I have defined LHS convenience to unlock the phone, which is great as you, then press on *, then the green button to unlock. However, a simple press up while it is in a pocket or something, and the thing unlocked and likely to make calls!

    Help, please. Apart from that, I like the 9700.

    OK - Thanks for the reply. A shame really - sort of defeated the purpose of a lock key if a key turns off.

  • Smartphones blackBerry how to turn off the voice dialing button

    A number of staff here (including me) is quite pulling our BBs out of cases to be greeted by "Say A command".

    How can I disable this feature? either completely, or just the button

    BlackBerry 9000 "BOLD" & 8310 curves

    You can select the side buttons are in the following steps:

    1) go to Options

    (2) screen/keyboard

    3) scroll down until you get on the right side and left side convenience keys you can change those to do what you want to do (for example open a program or a certain mailbox) or you can define them to do nothing.

    If this can help with your problem please gimme Kudos.

    Thank you

    PBKolsun

  • Put two ObjectChoiceField side by side

    Hello

    I tried to put both components in a HorizontalFieldManager ObjectChoiceField, but I can't view both on the same line, it seems that the other is pushed off the screen to the right.

    I tried with Manager.NO_HORIZONTAL_SCROLL nothing works.

    Can anyone please help me;

    Thank you very much

    You can limit the width of one of them. These two talk on this subject, but for the different types of fields:

    http://supportforums.BlackBerry.com/T5/Java-development/can-t-put-BasicEditField-and-button-side-by-...

    http://supportforums.BlackBerry.com/T5/Java-development/please-help-with-trying-to-put-a-BasicEditFi...

    But if you are sure that they will hold next, you can set one on the left with the style

    Field.FIELD_LEFT and I think he'll try to stay as close to the left as it can.  Give it a try.

  • Deleted all :(blackBerry smartphones

    I have a Blackberry Curve 8530.  Yesterday, I installed the BB desktop for the first time Manager and updated to the latest version of the OS.  I realized that I couldn't stand that the locking button side wasn't available, so I followed the instructions in this thread to downgrade the version of the OS.  So I uninstalled the latest desktop manager and installed the old one.  I then did the application loader thing and I guess only he reinstalled the old operating system.  But he deleted all my apps, contacts, texts, everything!  I could have sworn that he saved! I really need this feedback, what do I do?

    I wrote the instructions to downgrade in that thread. Nowhere don't say anything about the decommissioning of the Desktop Manager software during this process - which is not necessary.

    Anyway, your backup - search your hard drive for the whole PC "*.ipd", any file on the PC IPD, normally stored in the My Documents folder.

    Find something?

  • Update Firefox 29 I can't access to the sidebar of history with the history button. Any suggestions on how to change this? I tried to customize the toolbar

    Since the last update I can not access the sidebar of history with the history button more. I tried to customize the toolbar and download the Restorer Classic theme. Neither worked help would be appreciated.

    Does it mean that nothing happens when you click the history button and choose View history Sidebar?

    And nothing happens when you click the taskbar button side story provided by classic restaurateur theme?

    What happens when you hold the Ctrl key and press H?

    If none of the works above, restart Firefox with disabled modules and test again. Of course the button provided by the Restorer of classic theme will be temporarily unavailable.

  • digital touch button

    Hello

    We are 2 Apple Watch. and we want to send the stickers and share our heart rate but find Apple Watch digital touch button .my was able to find. but my friend can find me.

    Please help me

    Thank you

    HI - try the following steps, which can also help address other issues:

    • In the Contacts application on your iPhone:
      • Verify that you have set up a contact card for your friend and it contains their iPhone phone number and email address Apple ID.
      • Check that your own contact card contains your phone number iPhone and Apple ID email address.
    • Check that you have added your friend to the friends list on your Apple Watch:
      • On your iPhone, in the application of the Watch: Watch My > friends.
      • To add more friends: friends list > add friend > tap someone in the contacts list.
    • On your iPhone and Apple Watch, remove old iMessage conversations with your friend:
      • iPhone: app Messages > swipe to the left on a message thread > delete.
      • View: Open the Messages app (from the home screen, which is accessible by pressing the digital Crown) > swipe to the left on a message thread > tap on Trash / delete.
    • Set new conversations of Messages from your iPhone phone number:
      • iPhone: settings > Messages > Send and receive > scroll to start new Conversations of > choose your iPhone phone number.
    • Check the email addresses to which you can be reached via iMessage:
      • iPhone: settings > Messages > Send and receive > under you are reachable by iMessage to > allow email address Apple ID (with a scale) (do not enable others who are not only yours).
    • On your iPhone in the app Watch: Watch My > general > reset > press reset sync data:
      • You won't see anything happen after pressing it (the process runs in the background, invisible to the user).
      • Wait a minute or two, so that the data of contacts up to date on your watch.
    • Disable and re-enable iMessage on your iPhone:
      • iPhone > settings > iMessage > enable/disable / enable again.
    • Restart your iPhone and your watch (turn the two together off the coast, then restart your iPhone first):
      • To turn off your watch: press and hold the button side until you see the cursor off the power; slide it to turn off. To restart: press and hold the side button until you see the logo.
    • To send a Digital Touch:
      • Press the side button on your watch > choose your friend (turn the digital Crown and then press the icon or image in the middle of the screen) > tap the digital touch (finger pointing).
      • Send a sketch (drawing on the screen with your finger), a tap (tap the screen once or more) or your heart rate (place two fingers on the screen until you see and feel your heart rate).

    More information:

    Use the touch-Apple Support

Maybe you are looking for