diff options
Diffstat (limited to 'main/src/cgeo/geocaching/cgeotouch.java')
-rw-r--r-- | main/src/cgeo/geocaching/cgeotouch.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/cgeotouch.java b/main/src/cgeo/geocaching/cgeotouch.java index 7c56cba..d705743 100644 --- a/main/src/cgeo/geocaching/cgeotouch.java +++ b/main/src/cgeo/geocaching/cgeotouch.java @@ -112,6 +112,10 @@ public class cgeotouch extends AbstractActivity implements DateDialog.DateDialog if (extras != null) { geocode = extras.getString("geocode"); guid = extras.getString("guid"); + + if (StringUtils.isNotBlank(extras.getString("trackingcode"))) { + ((EditText) findViewById(R.id.tracking)).setText(extras.getString("trackingcode")); + } } trackable = app.getTrackableByGeocode("logging trackable"); |