blob: 2e1724780e6f938eb1b83362f690e61443d2ab74 (
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
|
package cgeo.geocaching;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;
import cgeo.geocaching.geopoint.Geopoint;
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(Double distance) {
setText("~" + base.getHumanDistance(distance));
}
public void clear() {
setText(null);
}
}
|