Java com.badlogic.gdx ApplicationListener fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx ApplicationListener fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx ApplicationListener.

The text is from its open source code.

Implementation

com.badlogic.gdx.ApplicationListener has the following implementations.
Click this link to see all its implementation.

Constructor

Method

voidcreate()
Called when the Application is first created.
voiddispose()
Called when the Application is destroyed.
voidpause()
Called when the Application is paused, usually when it's not active or visible on screen.
voidrender()
Called when the Application should render itself.
voidresize(int width, int height)
Called when the Application is resized.
voidresume()
Called when the Application is resumed from a paused state, usually when it regains focus.