summaryrefslogtreecommitdiffstats
path: root/tests/sketch/src/com/android
Commit message (Collapse)AuthorAgeFilesLines
* Removes gestures from ListView.Romain Guy2009-06-085-637/+0
|
* Modify the base gestures API to use streams instead of files. Adds new ↵Romain Guy2009-05-293-28/+31
| | | | wrappers to easily load/save gestures from files, resources, etc. Do the same for the letters recognizer.
* Cleanup Gestures API and make it easier to use in 3rd party apps. Also fix ↵Romain Guy2009-05-243-41/+27
| | | | the events processing in the gestures overlay mechanism. Give better control of the various properties of the overlay through XML attributes.
* Fix the buildRomain Guy2009-05-221-0/+3
|
* Add a new API to ListView: setGestures(int). This allows developers to ↵Romain Guy2009-05-221-3/+6
| | | | enable gestures to jump inside the list or filter it. This change also introduces a new XML attribute to control this API. It also adds the ability to theme the GestureOverlayView from the gestures library. Finally, this adds a new VERSION header to the binary format used to store the letters for the recognizer.
* Move the Gestures API to the framework in android.gesture.Romain Guy2009-05-2119-2698/+28
|
* Renamed setGestureType in GestureLibraryYang Li2009-05-212-3/+9
|
* Modify how GestureLibrary stores its data. The XML format is now replaced by ↵Romain Guy2009-05-219-269/+270
| | | | a more efficient binary format which should speed up saving/loading. The format is very similar to the one used by the letters recognizer. The format is documented in GestureLibrary.java.
* Merge change 2219 into donutAndroid (Google) Code Review2009-05-217-47/+109
|\ | | | | | | | | * changes: Updated LetterRecognizer & related gesture recognition code - added personalization for letter recognizer
| * Updated LetterRecognizer & related gesture recognition codeYang Li2009-05-217-47/+109
| | | | | | | | - added personalization for letter recognizer
* | Tweak the Gestures Overlay demo. This shortens the fade duration to make it ↵Romain Guy2009-05-203-13/+24
|/ | | | more usable and also adds a longer pause before the fade. This change also introduce a new compile-time setting to decide whether or not the overlay should steal the events from the underlying ListView. It is now off by default, per discussion with hackbod. It feel a little bit better but it may vary from user to user so studies will be necessary.
* First pass at cleaning up the gestures code.Romain Guy2009-05-2015-296/+317
|
* Recovered the code of the gesture libraryYang Li2009-05-1828-1723/+2984
|
* Revert "Squashed commit of the following:"Yang Li2009-05-1523-3028/+703
| | | | This reverts commit f8173411cc612017ecfa115d71fb823b0714d982.
* Squashed commit of the following:Yang Li2009-05-1523-703/+3028
| | | | | | | | | | | | | | | | | | | | | | | commit db1a75ffc2d5a811a8d983289dd4d0d9f2eeba5c Author: Yang Li <liyang@google.com> Date: Fri May 1 17:49:29 2009 -0700 Fixed a few more styles issues and made some methods package private commit f9735c3f1bbe6183337df226aa730b4be1225d55 Author: Yang Li <liyang@google.com> Date: Fri May 1 16:38:16 2009 -0700 - Refactored the code for Android coding styles and performance - Renamed GesturePad to GestureOverlay - Added GestureAdapter for default touch-through interactions of GestureOverlay - Added a new exmaple, ContactListGestureOverlay, to show how to gesture over an arbitary view commit 31050183c6d85091612f53155126c2488b920e32 Author: Yang Li <liyang@google.com> Date: Wed Apr 29 18:41:54 2009 -0700 Refactored the Gesture Library (An initial check-in).
* Get Sketch compiling.Joe Onorato2009-04-173-11/+0
| | | | | | Add an Android.mk. Android compiles with Java5, which doesn't let you put @Override on interface methods.
* Add sketch gesture demo application.Joe Onorato2009-04-1711-0/+1961
Initial checkin, there's no Android.mk yet.