aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/cgCacheView.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgeo/geocaching/cgCacheView.java')
-rw-r--r--src/cgeo/geocaching/cgCacheView.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/cgCacheView.java b/src/cgeo/geocaching/cgCacheView.java
new file mode 100644
index 0000000..6705729
--- /dev/null
+++ b/src/cgeo/geocaching/cgCacheView.java
@@ -0,0 +1,29 @@
+package cgeo.geocaching;
+
+import android.widget.CheckBox;
+import android.widget.ImageView;
+import android.widget.RelativeLayout;
+import android.widget.TextView;
+
+public class cgCacheView {
+ // layouts & views
+ public RelativeLayout oneCache;
+ public RelativeLayout oneInfo;
+ public RelativeLayout oneCheckbox;
+ public CheckBox checkbox;
+ public ImageView foundMark;
+ public ImageView offlineMark;
+ public TextView text;
+ public TextView favourite;
+ public TextView info;
+ public RelativeLayout inventory;
+ public RelativeLayout directionLayout;
+ public cgDistanceView distance;
+ public cgCompassMini direction;
+ public RelativeLayout dirImgLayout;
+ public ImageView dirImg;
+
+ // status
+ public float startX = -1;
+ public float prevX = -1;
+}