com.jme3.input.android
Interface AndroidTouchInputListener

All Superinterfaces:
RawInputListener

public interface AndroidTouchInputListener
extends RawInputListener

AndroidTouchInputListener is an inputlistener interface which defines callbacks/events for android touch screens For use with class AndroidInput


Method Summary
 void onAndroidKeyEvent(android.view.KeyEvent evt)
           
 void onMotionEvent(android.view.MotionEvent evt)
           
 void onTouchEvent(TouchEvent evt)
          Invoked on touchscreen touch events.
 
Methods inherited from interface com.jme3.input.RawInputListener
beginInput, endInput, onJoyAxisEvent, onJoyButtonEvent, onKeyEvent, onMouseButtonEvent, onMouseMotionEvent
 

Method Detail

onTouchEvent

void onTouchEvent(TouchEvent evt)
Description copied from interface: RawInputListener
Invoked on touchscreen touch events.

Specified by:
onTouchEvent in interface RawInputListener

onMotionEvent

void onMotionEvent(android.view.MotionEvent evt)

onAndroidKeyEvent

void onAndroidKeyEvent(android.view.KeyEvent evt)