summaryrefslogtreecommitdiff
path: root/samples/ApiDemos/src/com/example/android/apis/animation
Commit message (Collapse)AuthorAgeFilesLines
* API Review: change SharedElementListener to SharedElementCallbackGeorge Mount2014-09-041-3/+3
| | | | | | Bug 17289526 Change-Id: I5d28a77d870b83cc93483be23635bc669978cefc
* Revert "Revert "API Review: Change View viewName attribute to transitionName.""George Mount2014-06-231-1/+1
| | | | | | This reverts commit f4138cbcfc742dbe6e40ee054fbb52ebfebaa0ef. Change-Id: Id5531f7508b22cf0242a5bef063423d932eb104e
* Update activity transition API.George Mount2014-05-191-1/+1
| | | | Change-Id: Ic9f2ead3a6841ae7c11e38098aaf26a2b6e613fd
* New activity transition API.George Mount2014-05-152-6/+10
| | | | Change-Id: Icbf3533514a3216ab4b5a7146a8157535fbf1aa9
* Changed sharedElementName to viewName.George Mount2014-05-121-1/+1
| | | | | | Bug 14624181 Change-Id: Ia822e252030d94c0b73f41914656985656bc5efa
* Use new Quantum Paper Activity Transitions API.George Mount2014-04-172-57/+18
| | | | Change-Id: Ia487e02e8cb7a90bd14b0e09392eddac5c1a06ec
* Use framework Transition MoveImage and SlideGeorge Mount2014-04-075-662/+80
| | | | Change-Id: I3c55ee699288f1945ae0a23dfad2ae4fd9caa9a0
* Support changes in Scene Activity Transition API redo.George Mount2014-02-264-302/+250
| | | | | | This reverts commit 1b3da3748f21532684cec68bbf59eb412c053bab. Change-Id: I84fd15c154a404ed10971025b7bb33f58a344965
* Revert "Support changes in Scene Activity Transition API."George Mount2014-02-264-247/+304
| | | | | | This reverts commit 8ad5ffb4618350715cfef346e553b2b0501840eb. Change-Id: I3277537f7cc6a033ea1fc2948529f96c1dbc30e8
* Fix build breakage due to failed import.George Mount2014-02-261-3/+0
| | | | Change-Id: I626c44f30b1e899bdb230219b752511510c5bbb1
* Support changes in Scene Activity Transition API.George Mount2014-02-254-303/+249
| | | | Change-Id: Ia19b7def404f32ea5f68d2fece04dcd5ce615a42
* Cross-Activity Scene transitions API demo.George Mount2014-02-044-0/+876
| | | | Change-Id: Icd644902b61ca2f03f21045bfad3a758075fb7cc
* Revert "Add Trim Path API demo."George Mount2014-01-311-104/+0
| | | | | | | | Bug 12489442 This reverts commit fad0b2194612e88231a292250d5a4d6d8edd7059. Change-Id: I527d0927bf891fc9570e860c158a352e1767474c
* Merge "Add PathAnimations ApiDemos."George Mount2014-01-311-0/+257
|\
| * Add PathAnimations ApiDemos.George Mount2013-12-131-0/+257
| | | | | | | | Change-Id: I9b064032cd503450ba6d8c93453a4ab6c2163686
* | Remove Nullable annotationTor Norbye2013-12-171-2/+1
|/ | | | | | | The one in the framework is being hidden; for app usage we're adding one in the support library. Change-Id: I5612579b4d282e78d592d36bd35d51d28cf82b37
* Add Trim Path API demo.George Mount2013-12-101-0/+105
| | | | Change-Id: I1183413cf5a788950fdde52c26ddf737af921c5c
* Minor fixes to animation ApiDemosChet Haase2013-09-051-1/+15
| | | | | | | | | | | | Many of the original animation demos still had hardwareAccelerated="false" in their activity tag. This was originally necessary due to the state of the hw renderer in 3.0, but is no longer necessary. Also, added documentation to the new Transitions demo. Issue #7902583 Update animation ApiDemos to use hw acceleration Change-Id: I7add3acc10d8fa36648e1869a3ec91088b2e199d
* New demo for transitions featureChet Haase2013-09-041-0/+77
| | | | | | | | New demo in ApiDemos: animations/Simple Transitions Issue #10460684 KLP API Review: android.view.transition and android.animation Change-Id: I2c376343c2b945240bc5f3619786e9354a8c1a10
* Clean up LayoutTransition demos for smaller screens.Chet Haase2011-10-062-6/+5
| | | | | | | These demos assumed the size of a tablet device and looked pretty awful on phones. Change-Id: I246ef5a5f4619c1f2fe689eca321314375722014
* DefaultLayoutAnimations should use GridLayout instead.Chet Haase2011-09-271-16/+5
| | | | | | | | The 2-LinearLayout system the demo used to have had its quirks, but was just plain awful once it ran on a smaller screen. The new GridLayout makes for a much better experience. Change-Id: Ie3fd65e125c82da8b0079f61bd91bf844dea9b03
* Fix issues in LayoutAnimationsHideShow demo.Chet Haase2011-08-111-22/+23
| | | | | | | | There were various minor issues with this app that made it not work correctly in some situations (the APPEARING animation was basically a no-op, and disabling the custom animations disabled animations altogether). Change-Id: I20aba9551043a63c21d26208ae7cd0395cde01cb
* Adjust layouts of transition demos to improve fade-outs.Chet Haase2011-02-153-6/+9
| | | | | | | | | | | | When a container's child count goes to zero, it may report a measurement size of zero. This affects LayoutTransition's fading-out of target views because they may get clipped out by a layout that got sized to 0 because it thinks it has no children. The workaround is to tell the layout to size itself either with some minimal size (in the case of the FixedGridLayout used by some demos) or with match_parent in some cases to ensure that the layout always has some nonzero size. Change-Id: I908e64d4fb054928af277a021a328e94477c9c83
* Rename RGBEvaluator to ArgbEvaluatorChet Haase2011-01-101-1/+1
| | | | Change-Id: I43cf6c9824b012424de1ef2a340ee9dde20af4a7
* Demos should use main activity context, not getApplicationContext()Chet Haase2010-12-282-6/+8
| | | | Change-Id: I561defd90760864a975b905f13cf30c422da6125
* Added new xml anim capabilities to AnimationLoading demoChet Haase2010-12-012-14/+28
| | | | | | | New xml capabilities for animators, so I added new functionality to the existing xml loading demo app Change-Id: Iba30dce28059031744ce23d1f79f41072a6a1e78
* Update animation demo to use setBackgroundColor functionality on ViewChet Haase2010-11-031-28/+12
| | | | Change-Id: I6811fd4a3612c9af8f09e570ee3c600570cefcb1
* Merge "Make ApiDemo build on Java 5.0"Xavier Ducrohet2010-11-036-27/+0
|\
| * Make ApiDemo build on Java 5.0Xavier Ducrohet2010-11-036-27/+0
| | | | | | | | Change-Id: Ib0759e5598d73741ef9e2408f08edd5d6b38288b
* | Updated to the new optimized keyframe APIsChet Haase2010-11-034-14/+13
|/ | | | | | Also fixed some existing bugs in some of the animation apps Change-Id: Iff39a8396f8c49e2db8601b04012a0bb784a78ed
* Added setColor to ColorDrawable.Chet Haase2010-11-011-4/+3
| | | | | | | Also, set hardwareAccelerated=false for animation demos using ovals (which are not yet supported through GL) Change-Id: I710b6be51a14bf02650206bd6bae8841ecd3ac79
* Updating code to use new non-generified animator APIsChet Haase2010-10-1410-98/+108
| | | | Change-Id: I3023db9d1f9cb8bf98b788fce4ae2b58b182987d
* Various fixesChet Haase2010-10-072-2/+2
| | | | Change-Id: I70509d19d1df01e998de4804bc7c1e1899ad8dee
* Modfied demo to show setting animations to nullChet Haase2010-10-041-33/+78
| | | | | | Originally, setting LayoutTransition animators to null just restored the default animation behavior, It seems more sensible to have null actually disable the animation. I made that change to the framework and modified this demo to show how it's done. Along the way, I refactored the code a bit and fixed some minor bugs. Change-Id: Icfb53ada234b635294c5faa68a15932f25859fb8
* Demos for show/hide layout transitionsChet Haase2010-10-043-6/+184
| | | | Change-Id: Idb7ecb66b7dc0126a230385dd09af6a9208d5345
* Animation classname changesChet Haase2010-09-0811-203/+164
| | | | Change-Id: I0b3b5f1563ab0ac301684880957ed55ebfc54da5
* Demo ability to enable default layout animations from XMLChet Haase2010-09-031-0/+81
| | | | Change-Id: I4a5c73391d277c248958cf8cb5260078006bafb1
* Demo of layout add/remove transitionsChet Haase2010-09-036-7/+435
| | | | Change-Id: Ib5f31bb0b6d16fa18cf10a426a25c7a8138f620a
* Demo for using and testing animation eventsChet Haase2010-08-251-0/+234
| | | | Change-Id: I7db791928dc590fd724f4c71565b42bc366e519c
* Adding demo for xml animator loadingChet Haase2010-08-242-0/+335
| | | | Change-Id: I77d4e4f3b26c47e7973dd64282c12a9d6c3b5dd1
* add demo of bouncing balls to show various Animator APIsChet Haase2010-08-201-0/+196
| | | | Change-Id: I9d3aec9661d8845f67ea1c01b00f85f2380fd77f
* Revert "Revert "demo multi-property animations""Chet Haase2010-08-191-0/+178
| | | | This reverts commit afb6baf91595960a858c48f70bc32f14836bac52.
* Revert "demo multi-property animations"Chet Haase2010-08-191-178/+0
| | | | This reverts commit d9e2a04d7c51d698736594a3ee27d17f416822e0.
* demo multi-property animationsChet Haase2010-08-191-0/+178
| | | | Change-Id: I587bdc08e48a09d6df471e5bae767977c0c9ae18
* demo for new reversing behavior in AnimatorChet Haase2010-08-171-0/+142
| | | | Change-Id: I50c736ce504105101f71551d6074750dca9d1391
* Demo of new 3d rotation properties on ViewChet Haase2010-08-101-0/+140
| | | | Change-Id: I0b50b60c4452b3fc4bc22b8bc4109b8d78260204
* Add ApiDemo to show the new seeking behavior of AnimatorChet Haase2010-08-052-0/+286
| | | | Change-Id: I4ad4e322af9c1d8419e1d7f8bea6b20951a1dc4f
* Reduced WarningsChristian Mehlmauer2010-05-201-1/+1
| | | | Change-Id: I3ce0d27d24e8aad3fdbf8c57cefe39d1a3fd99e9
* AI 147793: cleanup broken links and delete all innacurate info in apidemo pagesScott Main2009-04-251-47/+0
| | | | | | BUG=1810005 Automated import of CL 147793
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-033-0/+315
|