public abstract class ApplicationAdapter extends java.lang.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. |
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. |
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. An Application is paused before it is destroyed, when a user pressed the Home
button on Android or an incoming call happend. On the desktop this will only be called immediately before ApplicationListener.dispose()
is called.pause in interface ApplicationListenerpublic void resume()
ApplicationListenerApplication is resumed from a paused state. On Android this happens when the activity gets focus
again. On the desktop this method will never be called.resume in interface ApplicationListenerpublic void dispose()
ApplicationListenerApplication is destroyed. Preceded by a call to ApplicationListener.pause().dispose in interface ApplicationListener