Added in revision 22
public static interface

AdvancedKeyboard.MultitapEventListener

com.datalogic.device.input.AdvancedKeyboard.MultitapEventListener

Class Overview

Interface representing a listener of keyboard multitap events. It can be registered and unregistered using methods in the the AdvancedKeyboard class.

Summary

Public Methods
abstract void onMultitapSelected(int index, char[] multitapKeys)
Method called when a multitap key is selected.
abstract void onMultitapSelecting(int index, char[] multitapKeys)
Method called when a multitap key is under selection but the key has not yet been confirmed.

Public Methods

public abstract void onMultitapSelected (int index, char[] multitapKeys)

Added in revision 22

Method called when a multitap key is selected. The same key will generate an input event.

Parameters
index Index of the selected key in the char array.
multitapKeys Array of all multitap chars associated to the multitap key.

public abstract void onMultitapSelecting (int index, char[] multitapKeys)

Added in revision 22

Method called when a multitap key is under selection but the key has not yet been confirmed.

Parameters
index Index of the selected key in the char array.
multitapKeys Array of all multitap chars associated to the multitap key.