diff options
| author | campbeb <bpcampbell@gmail.com> | 2013-01-16 21:11:00 -1000 |
|---|---|---|
| committer | campbeb <bpcampbell@gmail.com> | 2013-01-16 21:11:00 -1000 |
| commit | 30d309a38311ce4429e9dadfaae845e10d11430b (patch) | |
| tree | b977d17e0c3018d42b77b806780132fd5e3c11ac | |
| parent | cf0ed3e3a1449115705bd4443990df7e4aa152d4 (diff) | |
| download | cgeo-30d309a38311ce4429e9dadfaae845e10d11430b.zip cgeo-30d309a38311ce4429e9dadfaae845e10d11430b.tar.gz cgeo-30d309a38311ce4429e9dadfaae845e10d11430b.tar.bz2 | |
Remvoe unused image view and fix Java Docs
| -rw-r--r-- | main/res/layout/visit.xml | 9 | ||||
| -rw-r--r-- | main/src/cgeo/geocaching/connector/gc/GCParser.java | 6 |
2 files changed, 5 insertions, 10 deletions
diff --git a/main/res/layout/visit.xml b/main/res/layout/visit.xml index 33c1af6..d9243d7 100644 --- a/main/res/layout/visit.xml +++ b/main/res/layout/visit.xml @@ -75,15 +75,6 @@ android:textColor="?text_color" android:text="@string/visit_tweet" /> </LinearLayout> - <ImageView - android:id="@+id/image_preview" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginTop="5dip" - android:layout_marginBottom="5dip" - android:background="#000000" - android:padding="1dp" - android:visibility="gone"/> <Button style="@style/button_full" android:id="@+id/image_btn" android:text="@string/log_image_attach" /> diff --git a/main/src/cgeo/geocaching/connector/gc/GCParser.java b/main/src/cgeo/geocaching/connector/gc/GCParser.java index 908c21a..b885e5b 100644 --- a/main/src/cgeo/geocaching/connector/gc/GCParser.java +++ b/main/src/cgeo/geocaching/connector/gc/GCParser.java @@ -1071,9 +1071,13 @@ public abstract class GCParser { /** * Upload an image to a log that has already been posted - * + * * @param logId * the ID of the log to upload the image to. Found on page returned when log is uploaded + * @param caption + * of the image; max 50 chars + * @param description + * of the image; max 250 chars * @param imageUri * the URI for the image to be uploaded * @return status code to indicate success or failure |
