I just finished updating my app with the GLES2 branch. I ran into a few problems related to the live wallpaper extension.
In the onCreateScene method I create a scene and set a SceneTouchListener on it.
For example:
Using java Syntax Highlighting
- scene.setOnSceneTouchListener(new Scene.IOnSceneTouchListener() {
- @Override
- public boolean onSceneTouchEvent(Scene pScene, TouchEvent pSceneTouchEvent) {
- }
- }
Parsed in 0.031 seconds, using GeSHi 1.0.8.4
on the OnSceneTouchEvent I added the touch code and return true.
But after placing a log statement I found that the touch event function is never called. Has anyone faced this issue?
Thanks
