aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/cgDistanceView.java
blob: ebdfe7822d02be7801d3bebc28d923961bd510f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package cgeo.geocaching;

import cgeo.geocaching.geopoint.Geopoint;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;

public class cgDistanceView extends TextView {
    private cgBase base = null;
    private Geopoint cacheCoords = null;

    public cgDistanceView(Context context) {
        super(context);
    }

    public cgDistanceView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public cgDistanceView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public void setContent(cgBase baseIn, final Geopoint cacheCoordsIn) {
        base = baseIn;
        cacheCoords = cacheCoordsIn;
    }

    public void update(final Geopoint coords) {
        if (cacheCoords == null || coords == null || base == null) {
            return;
        }
        setText(base.getHumanDistance(coords.distanceTo(cacheCoords)));
    }

    public void setDistance(Float distance) {
        setText("~" + base.getHumanDistance(distance));
    }

    public void clear() {
        setText(null);
    }
}