public abstract class ApplicationAdapter extends Object implements ApplicationListener
ApplicationListener. Derive from this and only override what you need.| Constructor and Description |
|---|
ApplicationAdapter() |
| Modifier and Type | Method and Description |
|---|---|
void |
create()
Called when the
Application is first created. |
void |
dispose()
Called when the
Application is destroyed. |
void |
pause()
Called when the
Application is paused, usually when it's not active or visible on-screen. |
void |
render()
Called when the
Application should render itself. |
void |
resize(int width,
int height)
Called when the
Application is resized. |
void |
resume()
Called when the
Application is resumed from a paused state, usually when it regains focus. |
public void create()
ApplicationListenerApplication is first created.create in interface ApplicationListenerpublic void resize(int width,
int height)
ApplicationListenerApplication is resized. This can happen at any point during a non-paused state but will never happen
before a call to ApplicationListener.create().resize in interface ApplicationListenerwidth - the new width in pixelsheight - the new height in pixelspublic void render()
ApplicationListenerApplication should render itself.render in interface ApplicationListenerpublic void pause()
ApplicationListenerApplication is paused, usually when it's not active or visible on-screen. An Application is also
paused before it is destroyed.pause in interface ApplicationListenerpublic void resume()
ApplicationListenerApplication is resumed from a paused state, usually when it regains focus.resume in interface ApplicationListenerpublic void dispose()
ApplicationListenerApplication is destroyed. Preceded by a call to ApplicationListener.pause().dispose in interface ApplicationListenerCopyright © 2021. All rights reserved.