for my master thesis I developed a gesture recognition application which uses kinect to move the mouse cursor inside a sony google tv box. It works very well for my native written application, but for being able to use it in cooperation with webviews, the webview needs to fire javascript functions on the elements onmouseover and onmouseout events.
i.e:
<input type="button" value="Test" onClick="AndroidFunction.onGenericMotionEventHover();" onMouseOver="AndroidFunction.onGenericMotionEventHover();" onMouseOut="AndroidFunction.onGenericMotionEventNoHover();" style="width:200px;height:200px;" />
When I press the button, the javascript function (resp. it's native implementation) is called. But onMouseOut and onMouseOver is not working.
Is there any fix/possible solution for that?
Thanks in advance,
Sebastian
Edit: The events work in the Google Chrome Browser for Android, so it should work somehow in a Webview, shouldn't it?