Package javax

Abstract Class Application

extends Object

Extend the abstract class Application in order to use touch or keyboard events. Deriving from Application creates a custom application class. Note that since Application is abstract it cannot be instantiated. Touch event handling requires the implementation of the OnTouchListener interface in the custom application class. To do that the method OnTouch() has to be implemented. This method will be called from the TouchEventDispatcher class whenever a touch event occurs. The run() method of the Application class will make sure that OnTouch() will be called within the main thread to avoid strange iLCD behavior due to thread synchronization problems. Note that the iLCD panelJoC board is a global resource and changing panelJoC board settings and attributes in different threads likely leads to non-deterministic behavior of the panelJoC board. It is generally not recommended to change iLCD panelJoC board properties outside the main thread.

See:

Public Constructors

Public Methods

Methods inherited from java.lang.Object

_INSERT_INHERITED_METHOD_ENTRY_HERE_

_INSERT_FIELDS_ENTRY_HERE_