summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/ViewImage.java
Commit message (Collapse)AuthorAgeFilesLines
* Fix http://b/2115002.Wei-Ta Chen2009-09-161-3/+0
| | | | generateShuffleOrder() must be called after mAllImages is populated by init().
* Fix 2113527: NPE in ViewImage.onActivityResult.Chih-Chung Chang2009-09-141-11/+15
| | | | Change-Id: I87eca374895b1896a993ed80aa204193dce17123
* Add messages to help debug 2113527.Chih-Chung Chang2009-09-111-0/+6
| | | | Change-Id: I964bb8a02831a1bd89d1c74dd26283cafec9dc78
* Add double tap to zoom.Chih-Chung Chang2009-09-101-31/+63
| | | | Change-Id: I11ea02685bb27b33eb73c11bea9918b5fa02e186
* Clean menu creation code.Chih-Chung Chang2009-09-081-4/+5
| | | | Change-Id: Ie8ed04e74beef78208946688ee2f33297de0b6d1
* Fix 1977974: For photos without location data, don't offer to "Show on Maps"Chih-Chung Chang2009-09-071-2/+5
| | | | Change-Id: I7445e365ad9158312149dc80cf73361655171ba2
* Fix bug 2078592.Owen Lin2009-09-021-6/+5
| | | | | | | | | | | | | This bug is that the touch event location should be traslated to be related to the "owner view" of the zoom control. However, we didn't do that. So, there is a shift of the location in the event object. We tried to detect if user has touched on the zoom buttons and then keep those on-screen controls (including zoom buttons) shown. Now, we fix this bug by changing the logic to "if user has touched the screen while those on-screen controls are visilbe" then we keep those controls on screen. Change-Id: I3664c47d308a76afc7d8746da8bbbc1f3afbf7ac
* Style fix.Chih-Chung Chang2009-08-261-7/+8
| | | | Change-Id: I09ba86ee314e643415e41879c1d20ab1ede65a91
* Create ImageListParam as a spec for creating image lists.Chih-Chung Chang2009-08-261-26/+22
| | | | | | Also merge deactivate() and close(). Change-Id: Idc76eda25bfcefab949e46412dca366228b3f437
* Fix 2039004: "Camera settings" from review screens irrelevant to Camera or ↵Chih-Chung Chang2009-08-141-13/+0
| | | | Camcorder
* Hide controls when return from other activities.Owen Lin2009-08-061-10/+13
|
* Fix 2033184: Crash on delete after downloading/previewing picture attachments.Chih-Chung Chang2009-08-051-0/+5
|
* Fix bug 2022547. Show zoom buttons only when click on photo area.Owen Lin2009-07-311-82/+80
|
* Make dpad left/right move to prev/next image.Chih-Chung Chang2009-07-311-40/+12
|
* Revert "Use revised zoom widget, on the right in Gallery."Owen Lin2009-07-301-12/+0
|
* Defer bitmap rotation until it's drawn on ImageView.Ray Chen2009-07-291-7/+9
|
* Fix http://b/2017388 by handling the corner case in computeSampleSize().Wei-Ta Chen2009-07-291-8/+2
|
* Use revised zoom widget, on the right in Gallery.Ray Chen2009-07-271-0/+14
|
* Simplify ImageGetter.Chih-Chung Chang2009-07-241-285/+6
|
* Fix 1996918: NPE in ViewImage.onClick.Chih-Chung Chang2009-07-231-0/+1
|
* Fix http://b/1907995 by using native allocation in BitmapFactory.Wei-Ta Chen2009-07-201-8/+3
|
* Fix 1836138: Crash (permissions) when sharing from Email/Gmail --> Gallery ↵Chih-Chung Chang2009-07-101-9/+7
| | | | --> Anywhere Else
* Move reverse geocoder to AsyncTask and update location information ↵repo sync2009-07-101-1/+0
| | | | asynchronously.
* Set bitmaps for full size images as being purgeable in viewing and reviewing ↵Wei-Ta Chen2009-07-091-7/+13
| | | | | | | images. We increase the resolution of full size images to 2048x1536 for achieving better zoom-in quality. Also the delay between decoding a thumbnail and decoding a full size image is set to 1000 msecs.
* Style fix.Chih-Chung Chang2009-07-061-19/+21
|
* Fix 1955365: NPE in ViewImage.updateActionIconsChih-Chung Chang2009-07-021-6/+7
|
* Fix 1956859: "Set as" is not working with the downloaded image.Chih-Chung Chang2009-07-021-2/+2
|
* Fix 1950477: Menu items for video review are incorrect.Chih-Chung Chang2009-07-011-28/+8
|
* Fix bug 1949582. If this is the last image to be deleted,Owen Lin2009-06-301-0/+1
| | | | | the mCurrentPosition will be -1 and getImageAt() will return null and thus cause a NPE. If the image list is empty just return null is enough.
* Increase image zoom speed.Wu-cheng Li2009-06-301-0/+1
|
* Remove unused code in ViewImage.Owen Lin2009-06-251-69/+16
|
* Retry to submit it again. It seems I changed the file "IImage" -> "Image"Owen Lin2009-06-251-0/+9
| | | | before I create the commit.
* Revert "It seems that there is no quarantee that "onActivityResult()" will ↵Owen Lin2009-06-251-9/+0
| | | | | | be called" This reverts commit 90bbbcbdfa4f2329dfdfda867a4bd58fa27a2840.
* It seems that there is no quarantee that "onActivityResult()" will be calledOwen Lin2009-06-251-0/+9
| | | | | before "onStart()". So, adding code to handle both situations. Also add checking on "mPaused" in showOnScreenControls().
* Fix several issues with ImageList.Owen Lin2009-06-241-5/+16
| | | | | | | | | | | | | | | | | 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".
* Fix issue 1921166: Cropped image is not displayed after cropping a picture ↵repo sync2009-06-181-0/+2
| | | | from Gallery picture view.
* Fix NPE in issues 1921957 & 1921062.repo sync2009-06-171-2/+4
|
* Fix issue 1880374 The thumbnail does not update in picture review mode after ↵repo sync2009-06-151-0/+2
| | | | deleting the captured picture.
* Hide Action Icon panel for MMS images.Owen Lin2009-06-091-0/+11
|
* Add correct action icons to ViewImage for videoOwen Lin2009-06-081-75/+91
|
* Fix bug 1897802 in two parts.Owen Lin2009-06-041-1/+12
| | | | | 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
* Make the action icons show on GalleryOwen Lin2009-06-031-97/+128
|
* Pass image list from ImageGallery to ViewImage to support the uber typeOwen Lin2009-06-031-50/+24
| | | | image list.
* Simplify the database code by keeping small data in memory.Owen Lin2009-05-281-1/+1
|
* Fix bug 1873866: removing unused member mShutterButton.Owen Lin2009-05-271-3/+0
|
* Fix 1850846.Chih-Chung Chang2009-05-251-0/+7
| | | | Drop the result from a previous request.
* New UI for donut's camera !!Owen Lin2009-05-221-13/+40
|
* remove cancelAllDecodingThreads and allowAllDecodingThreads.Ray Chen2009-05-141-9/+1
|
* Fix bug 1841837. By updating the zoom controller after zoom in/zoom out.Owen Lin2009-05-121-0/+1
|
* One last bit to get rid of the duplicated roation ....Owen Lin2009-05-061-15/+0
|