blob: 9216bc096410da6ca5dc642e4979f40c4a99eea9 (
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
|
package cgeo.geocaching.apps.cachelist;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.R;
import cgeo.geocaching.SearchResult;
import cgeo.geocaching.apps.AbstractApp;
import cgeo.geocaching.maps.CGeoMap;
import android.app.Activity;
import java.util.List;
class InternalCacheListMap extends AbstractApp implements CacheListApp {
InternalCacheListMap() {
super(getString(R.string.cache_menu_map), R.id.cache_list_app_map, null);
}
@Override
public boolean isInstalled() {
return true;
}
@Override
public boolean invoke(List<Geocache> caches, Activity activity, final SearchResult search) {
CGeoMap.startActivitySearch(activity, search, null);
return true;
}
}
|