summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/gallery
Commit message (Collapse)AuthorAgeFilesLines
...
* Add retry if the query fails. The query fails if the mediaChih-Chung Chang2009-07-031-0/+16
| | | | provider is killed.
* Fix 1950477: Menu items for video review are incorrect.Chih-Chung Chang2009-07-011-2/+2
|
* Fix several issues with ImageList.Owen Lin2009-06-242-5/+38
| | | | | | | | | | | | | | | | | One is bug 1933327 It seems to be timing issue. We assign the value of mAllImages in only "onCreate" and will set it to null in "onActivityResult". I modified the code so that it won't be null after "onCreate()". The other issue is the crop image won't . The reason is we don't clean up the cache when we reopen the cache. It won't work for ImageListUber for the original fix since "buildImageListFromUri" won't return ImageList of type ImageListUber. The final one is the "getImaegForUri", last time, I made a change but cause review fails in Camera. But, I need the check if the given uri is actually the same as the image list not just check the "id".
* Remove verbose messages.Chih-Chung Chang2009-06-221-4/+0
|
* Integrate camcorder review mode to ReviewImage.Wu-cheng Li2009-06-191-0/+10
|
* Remove unnecessary thumbnail generation in the process of saving image.Chih-Chung Chang2009-06-161-37/+0
| | | | | | The original code does not work as intended because the filePath is null at that time, and the mini thumbnail magic is cleared in execute() of AddImageCancelable. So remove this part of code altogether.
* Merge change 4027 into donutAndroid (Google) Code Review2009-06-151-3/+3
|\ | | | | | | | | * changes: fix bug 1909589 and 1903635. I think the cause root is that the LruCache is not thread safe. I change it to thread safe and add a test for this.
| * fix bug 1909589 and 1903635. I think the cause root is that the LruCache is notOwen Lin2009-06-111-3/+3
| | | | | | | | thread safe. I change it to thread safe and add a test for this.
* | Fix 1911405: Captured JPEG image size is only 512x384.Chih-Chung Chang2009-06-152-7/+8
|/ | | | | | The problem is the thumbnail is written to the same file as the original image. The bug is made visible by the new camera driver because the thumbnail in the jpeg file is not readable (I'll file another bug for that).
* Fix issue 1906618.repo sync2009-06-111-3/+0
|
* Add correct action icons to ViewImage for videoOwen Lin2009-06-081-2/+3
|
* Use a week reference to trace all the items which are in used.Owen Lin2009-06-081-8/+47
| | | | | By doing so, we can make sure there are only item of the given key in the system.
* Fix bug 1897802 in two parts.Owen Lin2009-06-041-0/+4
| | | | | 1. Override the getImageIndex in SingleImageList (This is a potential bug) 2. Fallback to the original code if no ImageList is pass over the intent
* Pass image list from ImageGallery to ViewImage to support the uber typeOwen Lin2009-06-033-12/+22
| | | | image list.
* Make ImageList parcelable so that they can pass by intent.Owen Lin2009-06-037-32/+181
|
* Fix the order bug in ImageListUber and add unit test for ImageListUber.Owen Lin2009-05-291-1/+6
|
* Simplify the database code by keeping small data in memory.Owen Lin2009-05-2813-801/+529
|
* Clean CropImage.Chih-Chung Chang2009-05-192-3/+3
|
* Fix problems identified by findbugs fixit.Chih-Chung Chang2009-05-156-7/+8
|
* findbugs fixit.Chih-Chung Chang2009-05-142-2/+0
| | | | remove unused variable and code.
* Tweak to speed up Gallery.Chih-Chung Chang2009-05-141-8/+8
|
* Fix bug found in stability test.Chih-Chung Chang2009-05-051-1/+1
| | | | Implement getRow for UriImage.
* Reduce ViewImage start up time.Chih-Chung Chang2009-05-043-14/+27
| | | | On an sdcard with ~800 images, the start up time is reduced by about 1 sec.
* Improve the design of ICancelable.Owen Lin2009-04-299-179/+268
|
* Code clean up.Chih-Chung Chang2009-04-295-7/+5
|
* Disable 'acqureResourceLock' and 'releaseResourceLock' in BitmapManager.Ray Chen2009-04-281-72/+65
|
* In Gallery, make visible thumbnails appear faster.Chih-Chung Chang2009-04-286-56/+23
| | | | | Put checkThumbnails and getBitmap to the same thread in ImageLoader, and only do checkThumbnails when there are no getBitmap requests.
* Issue 1799299: Display picture details.Ray Chen2009-04-241-42/+61
|
* Code cleanup. Try to remove some depercated usage of cursor.commitUpadtes()Owen Lin2009-04-1710-69/+18
|
* Remove remaining reference to ImageManager.instance().Chih-Chung Chang2009-04-172-3/+3
|
* Code clean up.Chih-Chung Chang2009-04-171-1/+1
|
* Refactoring the code.Owen Lin2009-04-163-39/+37
|
* Decode to smaller size so mini-thumb generation is faster.Chih-Chung Chang2009-04-161-1/+1
|
* Code clean up.Chih-Chung Chang2009-04-1610-42/+48
|
* Code clean up.Chih-Chung Chang2009-04-158-232/+105
|
* Code clean up.Chih-Chung Chang2009-04-158-35/+33
|
* Move makeBitmap to Util.Chih-Chung Chang2009-04-156-127/+11
|
* Clean verbose logging messages.Chih-Chung Chang2009-04-1513-534/+327
| | | | Extract UriImage to a separate file.
* AI 146099: 1. Use ICancelable<T> to replace several different interfaces, ↵Owen Lin2009-04-1416-318/+39
| | | | | | | | such as IGetBooleanCancelable. 2. Remove some warnings. Automated import of CL 146099
* AI 146085: Extract mini-thumb handling code to a separate class.Chih-Chung Chang2009-04-143-200/+216
| | | | Automated import of CL 146085
* AI 145868: Code clean up.Chih-Chung Chang2009-04-139-200/+22
| | | | Automated import of CL 145868
* AI 145823: Remove unused code.Chih-Chung Chang2009-04-1210-132/+0
| | | | Automated import of CL 145823
* AI 145696: Utilize BitmapManager to control bitmap related resources, makingRay Chen2009-04-105-41/+28
| | | | | | | decoding cancelable, thus reduce activities switch latency and gallery related ANR. BUG=1692286 Automated import of CL 145696
* AI 145045: Code clean up.Chih-Chung Chang2009-04-089-133/+0
| | | | Automated import of CL 145045
* AI 144530: Refactor the huge codes in ImageManager. Extract member classes ↵Owen Lin2009-04-0320-0/+4373
to top level. Fix style issue. Automated import of CL 144530