diff options
author | SammysHP <sven@sammyshp.de> | 2011-11-23 16:03:44 +0100 |
---|---|---|
committer | SammysHP <sven@sammyshp.de> | 2011-11-23 16:03:44 +0100 |
commit | b4eaf66670760969f72b1244f298654484ee5731 (patch) | |
tree | aa345cd6acada40c3af70871f61a07b3542dd610 /main/src/cgeo/geocaching/cgeo.java | |
parent | df4bf84d783744790b1aa2975e8373261eb6ca06 (diff) | |
download | cgeo-b4eaf66670760969f72b1244f298654484ee5731.zip cgeo-b4eaf66670760969f72b1244f298654484ee5731.tar.gz cgeo-b4eaf66670760969f72b1244f298654484ee5731.tar.bz2 |
New: Horizontal scrollable pages for cache-details using a ViewPager.
This moves most of the code from "cgeodetail" into a new class "CacheDetailActivity". Some important parts are rewritten and the code is much more structured.
This closes #83 "Redesign detail-view".
Some minor changes will be added later (e.g. removing old files, improve log-count-display)
Diffstat (limited to 'main/src/cgeo/geocaching/cgeo.java')
-rw-r--r-- | main/src/cgeo/geocaching/cgeo.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgeo.java b/main/src/cgeo/geocaching/cgeo.java index 0c9dc90..e24a4bb 100644 --- a/main/src/cgeo/geocaching/cgeo.java +++ b/main/src/cgeo/geocaching/cgeo.java @@ -309,7 +309,7 @@ public class cgeo extends AbstractActivity { String host = "http://coord.info/"; if (scan.toLowerCase().startsWith(host)) { String geocode = scan.substring(host.length()).trim(); - cgeodetail.startActivity(this, geocode); + CacheDetailActivity.startActivity(this, geocode); } else { showToast(res.getString(R.string.unknown_scan)); |