virtual keyboard - Blackberry Issue showing VirtualKeyboard and getting a blank screen -


i have issue when show virtualkeyboard appears on screen blank space on mainscreen. ideas avoid blank space?

probably same weird attitude of blackberry os guy... weird behavior in blackberry when toggling virtual keyboard between 2 textboxes

enter image description here

private verticalfieldmanager manbackground; private newslist newslist; 

problem solved, using onexposed() method ...

protected void onexposed() {    if (comesfromarticle){ //comes article (probably virtual keyboard showed)...     manbackground.delete(manbackground.getfield(0)); / delete manager contains list of news (newslist).     manbackground.add(newslist);//add again newslist, blank space disappear...     comesfromarticle =false;     }     super.onexposed(); } 

Comments

Popular posts from this blog

sql - text truncated using perl DBI insert -

c++ - Is it possible to compile a VST on linux? -

php - Pass object by reference or value -