diff options
author | Chih-Chung Chang <chihchung@google.com> | 2009-11-02 18:25:43 +0800 |
---|---|---|
committer | Chih-Chung Chang <chihchung@google.com> | 2009-11-03 11:59:05 +0800 |
commit | 271b3095b9f763421c0547109da9de774795072d (patch) | |
tree | 71c875e50fcfad9485a87cb13fc2344405f1e1bc /src/com/android/camera/ReviewImage.java | |
parent | 77c1cdc8f2cda250b1db842204efb49f87e094ae (diff) | |
download | packages_apps_LegacyCamera-271b3095b9f763421c0547109da9de774795072d.zip packages_apps_LegacyCamera-271b3095b9f763421c0547109da9de774795072d.tar.gz packages_apps_LegacyCamera-271b3095b9f763421c0547109da9de774795072d.tar.bz2 |
Clean up and add comments for classes.
Diffstat (limited to 'src/com/android/camera/ReviewImage.java')
-rw-r--r-- | src/com/android/camera/ReviewImage.java | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/com/android/camera/ReviewImage.java b/src/com/android/camera/ReviewImage.java index ee3ff38..73c3096 100644 --- a/src/com/android/camera/ReviewImage.java +++ b/src/com/android/camera/ReviewImage.java @@ -42,11 +42,13 @@ import com.android.camera.gallery.IImage; import com.android.camera.gallery.IImageList; import com.android.camera.gallery.VideoObject; -// This activity can display a whole picture and navigate them in a specific -// gallery. It has two modes: normal mode and slide show mode. In normal mode -// the user view one image at a time, and can click "previous" and "next" -// button to see the previous or next image. In slide show mode it shows one -// image after another, with some transition effect. +/** + * An activity displays a full picture and can navigate in a specific image + * list. + * + * <p>The user view one image at a time, and can click "previous" and "next" + * button to see the previous or next image. + */ public class ReviewImage extends NoSearchActivity implements View.OnClickListener { private static final String STATE_URI = "uri"; |