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

c# - SharpSVN - How to get the previous revision? -

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

url - Querystring manipulation of email Address in PHP -