Center screen before showing?
2 posts
• Page 1 of 1
Center screen before showing?
Is it possible to center the screen before it will be shown?
Calling center() in constructor didn't work
Calling center() in constructor didn't work
- johnit
- Posts: 45
- Joined: Fri Nov 16, 2012 5:58 pm
Re: Center screen before showing?
center() doesn't work in constructor because the frame isn't available at this time.
You should override onActivate:
The screen is only the content and doesn't know anything about the representation (frame, embedded, ...). Usually it's a simple panel.
You should override onActivate:
- Code: Select all
@Override
public void onActivate() throws Throwable
{
super.onActivate();
center();
}
The screen is only the content and doesn't know anything about the representation (frame, embedded, ...). Usually it's a simple panel.
-
Support@SIB - Posts: 353
- Joined: Mon Sep 28, 2009 1:56 pm
2 posts
• Page 1 of 1