I'm trying to add gestures to my platformer. I had the same code working in a seperate app but now I'm trying to bring it in to the game it throws an error(NullPointerException) when adding the gesture event listener to the gesture overlay view.
Could it be because I'm trying to get it to work at the same time as the SurfaceView that actually runs the game.
Ive added the main game (called GameView) with "setContextView(new GameView(this));" it works fine but I'm not sure if the two views (game view and gesture overlay view) are clashing somehow.
Could this be the problem or is it some thing else?
The error is this line:
vars.gestures.addOnGesturePerformedListener(handleGestureListener);
this is the listener:
private OnGesturePerformedListener handleGestureListener = new OnGesturePerformedListener() {
public void onGesturePerformed(GestureOverlayView gestureView,
Gesture gesture) {
ArrayList<Prediction> predictions = vars.gLib.recognize(gesture);
// one prediction needed
if (predictions.size() > 0) {
Prediction prediction = predictions.get(0);
// checking prediction
if (prediction.score > 1.0) {
// and action
Toast.makeText(vars.context, prediction.name,
Toast.LENGTH_SHORT).show();
}
}
}
};