public abstract class GestureLibrary
extends Object
java.lang.Object | |
↳ | android.gesture.GestureLibrary |
Fields |
|
---|---|
protected final GestureStore |
mStore |
Protected constructors |
|
---|---|
GestureLibrary() |
Public methods |
|
---|---|
void |
addGesture(String entryName, Gesture gesture) |
Set<String> |
getGestureEntries() |
ArrayList<Gesture> |
getGestures(String entryName) |
int |
getOrientationStyle() |
int |
getSequenceType() |
boolean |
isReadOnly() |
abstract boolean |
load() |
ArrayList<Prediction> |
recognize(Gesture gesture) |
void |
removeEntry(String entryName) |
void |
removeGesture(String entryName, Gesture gesture) |
abstract boolean |
save() |
void |
setOrientationStyle(int style) |
void |
setSequenceType(int type) |
Inherited methods |
|
---|---|
From class java.lang.Object
|
void addGesture (String entryName, Gesture gesture)
Parameters | |
---|---|
entryName |
String
|
gesture |
Gesture
|
ArrayList<Gesture> getGestures (String entryName)
Parameters | |
---|---|
entryName |
String
|
Returns | |
---|---|
ArrayList<Gesture> |
ArrayList<Prediction> recognize (Gesture gesture)
Parameters | |
---|---|
gesture |
Gesture
|
Returns | |
---|---|
ArrayList<Prediction> |
void removeGesture (String entryName, Gesture gesture)
Parameters | |
---|---|
entryName |
String
|
gesture |
Gesture
|