I am developing an app which supposed to work on devices that have OS 4.5 or later. In my application I need to know when the virtual keyboard is visible or invisible. Because if virtual keyboard is visible, the text area which the user is supposed to type in is behind the keyboard. If I could determine the moment of virtual keyboards state changed, I could refresh the screen and move the text area upper location.

Is there a way to do that?

Edit: the next button is at the status panel. The edit field is at the custom horizontal field manager.

enter image description here

When I touch the edit field, the virtual keyboard opens and the contents of the edit field is lost.

enter image description here

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted
+50

There is no way to do that with the same code. You need to divide your code in two. One of them handles 4.5 - 4.7. The other handles 4.7 and later.

You can add a keyboard listener to 4.7 (and later) code that should check whether the screen changes in a continuous thread. It is not good, but it can work.

link|improve this answer
feedback

There is no event for this, but you can determine current state of virtual keyboard and set required state. For example hide it

    if(VirtualKeyboard.isSupported() == true){
        VirtualKeyboard keyboard = getVirtualKeyboard();

        if(keyboard != null)
            keyboard.setVisibility(VirtualKeyboard.HIDE);
    }
link|improve this answer
as i said before i have to implement that code with 4.5 and above sdks. VirtualKeyboard class is available after 4.7SDK. so this is not the answer. – Ahmet Gulden Jun 9 '11 at 10:23
2  
It's just imposible in that terms. – MishaZ Jun 9 '11 at 11:20
@Ahmet Gulden, use preprocesseur directive for 4.7+ code docs.blackberry.com/en/developers/deliverables/12002/… – Michael B. Jul 3 '11 at 19:22
@Micheal B. preprocessor directives sound good. I will give it a try. But i should have a some listener to listen keyboard events anyway. – Ahmet Gulden Jul 4 '11 at 6:39
feedback

You have two choices. The first choice is better:

  • Figure out an invariant that works with the keyboard visible or hidden. The screen layout method is invoked when the visibility state of the keyboard changes, and the vertical size is reduced for a visible keyboard. If your invariants take advantage of that then you can just implement the logic in the screen layout method.
    In this case, I would suggest a layout method that always keeps the 'next' button at the bottom of the screen, and puts the username textbox in the center of the remaining space.

  • Use conditional compilation so you can write code that makes reference to the VirtualKeyboard class on OS 4.7+, and that code goes away in the older BlackBerry releases. 4 July: by conditional compilation, I mean use the BlackBerry preprocessor.

link|improve this answer
Next button is at different panel than editfield is. I can not move it to there since whole implementation logic would collapse. You mean Class.forName(...) for conditional compilation? – Ahmet Gulden Jul 4 '11 at 6:34
feedback

It is a quite challenging job. However, I believe there is no direct API or way to determine the virtual Keyboard state. The only way is to override the setLayout() method and determine if the screen width and height has been changed. And also you need to check the GUI layouts of your screen.

link|improve this answer
well the problem is i could not know when the screen width and height changes. – Ahmet Gulden Jun 29 '11 at 6:38
you can know by overridding the setLayout method. It always invokes the method for any dimension changes – Nilanchala Jul 21 '11 at 6:04
feedback

Set the VERTICAL_SCROLL style for the Manager which holds the EditField, or you can use a Screen with VERTICAL_SCROLL style. Doing this, the EditField automatically scrolls when the keyboard is displayed.

Use following class, maybe this is helpful for you:

class FocusableManager extends MainScreen implements FocusChangeListener
{
    private BasicEditField b;
    public FocusableManager() 
    {
        VerticalFieldManager vfm=new VerticalFieldManager(VERTICAL_SCROLL);
        vfm.add(new ButtonField("first"));
        b=new BasicEditField();
        b.setFocusListener(this);
        vfm.add(b);
        vfm.add(new ButtonField("second"));
        vfm.setMargin(250,0,0,0);
        add(vfm);
    }
    public void focusChanged(Field field, int eventType)
    {
        if(field==b)
        {
            if(eventType==1)//when edit field gain focus
            {
                VirtualKeyboard virtKbd;
                virtKbd =  getScreen().getVirtualKeyboard();
                virtKbd.setVisibility(VirtualKeyboard.SHOW_FORCE);
            }
            else if(eventType==3)//when edit field lost focus
            {
                VirtualKeyboard virtKbd;
                virtKbd =  getScreen().getVirtualKeyboard();
                virtKbd.setVisibility(VirtualKeyboard.HIDE_FORCE);
            }
        }
    }
}
link|improve this answer
actually i use VERTICAL_SCROLL at the manager which holds custom horizontal manager that holds the editfield. – Ahmet Gulden Jun 28 '11 at 10:39
by the way there is no VirtualKeyboard Class at 4.5 SDK. – Ahmet Gulden Jun 28 '11 at 10:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.