summaryrefslogtreecommitdiffstats
path: root/src/com/android/dreams/phototable/PhotoTable.java
Commit message (Collapse)AuthorAgeFilesLines
* fix an NPE for clicks immediately upon photo table start.Chris Wren2013-08-151-2/+6
| | | | | Bug: 10340671 Change-Id: Ia0e7f352b2fcfc017301f21e8b9d89d2efd887d4
* resove some edge cases in background optimization.Chris Wren2013-08-141-21/+26
| | | | | | | | | don't try to guess where the view is, just remove it from where ever it is. don't try to track if things are animating, just add them to the background at the next convenient time. Bug: 10048162 Change-Id: Icad3dfe8de95ab57790d201a637f1938af3aa79a
* quick fix for jank on touch devices.Chris Wren2013-06-191-22/+52
| | | | | | | | | | optimizations for notouch devices caused jank on touch. The best solution is difficult, so for the time being, let's just disable that optimiztion on touch devices. Bug: 9462757 Change-Id: I4e574eb23d0764267e5b5efea01230feba5114d1
* graphics optimization to get back inside 60Hz.Chris Wren2013-04-111-61/+112
| | | | | Bug: 8594598 Change-Id: Iccb1779b5dd133af4441038c3f945d1c1ac1ba8d
* story mode: declutter by fading out the backgroun images.Chris Wren2013-04-111-6/+51
| | | | | Bug: 8573228 Change-Id: I8b62f9fcf6c7ae82bcb990428a421722c7197e1c
* story mode: tune timeouts and timeout management.Chris Wren2013-04-101-12/+28
| | | | | Bug: 8572979 Change-Id: Ica0559bec273d3628c96b5c25e6e8303226ef433
* better memory/cursor management for story mode.Chris Wren2013-04-101-6/+4
| | | | | Bug: 8578085 Change-Id: I11c44c64a9d4318a00f6db21369eba43b586f809
* manage obsolete threads.Chris Wren2013-04-091-16/+28
| | | | | Bug: 8574670 Change-Id: I79a9bdb8de2fec46de591acfe5a3cbcd30f0ecdf
* support dpads in story mode.Chris Wren2013-04-091-11/+4
| | | | | Bug: 8572945 Change-Id: Icabd1fc61ec7c3c5b6a2f5ef94641eb7c8deb1c3
* story mode for PhotoTable.Chris Wren2013-04-091-166/+290
| | | | | | | | also some cleanup and refactoring also fix stuck alphas Bug: 8399588 Change-Id: Id236b29701ede3696c8f1f0ccc6522eb8256ff25
* add two-finger move gesture.Chris Wren2013-03-221-6/+36
| | | | | Bug: 8387448 Change-Id: Ib8a54ee3e978df3c5d15058d4fe82b9e7d6a524b
* add swipe-away gesture, and fix focus blink.Chris Wren2013-03-151-3/+10
| | | | | Bug: 8387448 Change-Id: I316d21069e0b81f1753c975a67f56f95282c2a8a
* add keyboard navigation to photo table daydreamChris Wren2013-03-141-17/+250
| | | | | | | | | arrows: move focus enter: select/deselect x/del: throw away Bug: 8387448 Change-Id: I45d9b2273051abd18aaa82a7e6201196b06f7ce0
* guard against NPEs in bitmap decoding.Chris Wren2013-01-101-1/+1
| | | | | | | Somehow people occasionally see null bitmaps with valid BitmapFactory.Options. Bug: 7403211 Change-Id: If6e18aa6b1c9ea6b8344f039d26197fbb44ff0d9
* tune re-deal behavior on photo table.Chris Wren2012-12-101-14/+9
| | | | | Bug: 7669353 Change-Id: I17aaf289067cbd688dba5cd317541b98bb4ee3dd
* don't reuse mOptions across threads.Chris Wren2012-11-011-7/+11
| | | | | Bug: 7370134 Change-Id: If6e02c2095f5f70e4dd506e651efbbd5ad47fa07
* Make my dreams prettyRomain Guy2012-10-161-0/+1
| | | | | | | | | Bug #7353771 This change enables mipmapping on large photos to make them look nicer when scaled down. Change-Id: I90f398a361f78b098884543a686e20a266e6af44
* Save memoryRomain Guy2012-10-161-2/+0
| | | | | | | | PhotoTable creates layers when they are not needed. Since the images are pretty big this generates large allocations that don't help improve performance. Change-Id: I95f28c27c8facc1fd4562cb7ba1f3c83fd80d9fc
* Hopefully fix build.Dianne Hackborn2012-09-281-3/+3
| | | | Change-Id: I4c1a0ab6a88dd6a071e5467497e5c85891893ea3
* add vignetting to the photo tableChris Wren2012-09-131-6/+9
| | | | Change-Id: I329b14ffdc70cc21e16f917fd06a4c2b1f1e27b6
* deal out new images in batchesChris Wren2012-09-131-2/+8
| | | | Change-Id: I1637c4063a0f743efdde79e47c5f283ff5771f05
* tune photo screensaver transisitons.Chris Wren2012-09-131-1/+1
| | | | | Bug: 7162805 Change-Id: I2f0fe4eb9245855d0caa34f1eb288c5d6f2c87f1
* multiple landing zones for photo table.Chris Wren2012-09-131-4/+19
| | | | Change-Id: I71592794d73884ce0dd018d72f69a6c200a3f36d
* New animation curves for photo table.Chris Wren2012-09-131-5/+22
| | | | Change-Id: I971fa42d44b5b0d4649f0666267cb72219db1f0e
* Add ability to select the albums to display.Chris Wren2012-09-071-11/+417
| | | | Change-Id: I80ff33c4c880c445b79735d6483bc9337a89e392
* add a simple photo flipper dream.Chris Wren2012-09-041-1/+1
| | | | Change-Id: I33a5dc491445ba6203e744099187df2760486be6
* fix lightsout mode and workaround a multifinger fling bug.Chris Wren2012-08-311-5/+5
| | | | Change-Id: I59b195b4a43de61b19a9bdf98a76e2fa0f705db4
* fix and enable flicking, also refactorChris Wren2012-08-301-762/+0
| | | | Change-Id: Iec0033370fd040cb6d650c3746ee397195c64416
* PhotoTable Polish:Chris Wren2012-08-301-151/+302
| | | | | | | | | | + remove manual rotation + better icon + gradient background + remove tap to dismiss + (temporarily disabled) flick to replace Change-Id: I2177077e37ce07a131a67bfbd11f8a447775ab98
* Photo Table V2Chris Wren2012-08-271-50/+187
| | | | | | | | + Add ability to manipulate images. + Handle device rotations with more grace. + support device-specific scaling factors Change-Id: Ie53ae7dc41225501437f0a77f5ccda1a8a92069f
* Example Dream: photosChris Wren2012-08-231-0/+514
An example screensaver that shows local photos. Change-Id: I2997c4f8ab35777d96df31a46f2f55044e3114c2