Example usage for android.view KeyEvent KeyEvent

List of usage examples for android.view KeyEvent KeyEvent

Introduction

In this page you can find the example usage for android.view KeyEvent KeyEvent.

Prototype

private KeyEvent(Parcel in) 

Source Link

Usage

From source file:org.mixare.DataView.java

public void keyEvent(int keyCode) {
    synchronized (uiEvents) {
        uiEvents.add(new KeyEvent(keyCode));
    }
}