I am currently trying to implement GestureOverlay to capture both vertical and horizontal strokes on top my view. Typically this functionality is not accepted, as it assumes you are applying on top of a scrollable view.

Using android:orientation I am able to set it to capture one or the other, but I need to know if there is a way to override this to accept both, or if I am stuck using a custom gesture adapter.

Thank You, Josh McKinney

link|improve this question

44% accept rate
I have a similar issue, I have restricted the orientation type to portrait and the Gesture Overlay will not recognize gestures that are vertical. (Eg. Drawing the letter "i") The Gesture remains faded. – Nuktu May 7 '11 at 16:26
I tried implementing android:orientation="none" into the Gesture Overlay XML file. However this just produces an error saying: Error: String types not allowed (at 'orientation' with value 'none') – Nuktu May 7 '11 at 17:59
feedback

1 Answer

The android:orientation="none" option is part of the Replicant project and isn't valid for standard Android builds. In short, the only options you have are horizontal and vertical, sorry.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.