blob: ed8a7bc204607138ec7ef815fae926cbc9d686d0 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
package cgeo.geocaching.maps.mapsforge.v024;
import cgeo.geocaching.activity.FilteredActivity;
import cgeo.geocaching.maps.AbstractMap;
import cgeo.geocaching.maps.CGeoMap;
import cgeo.geocaching.maps.interfaces.MapActivityImpl;
import org.mapsforge.android.mapsold.MapActivity;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
public class MapsforgeMapActivity024 extends MapActivity implements MapActivityImpl, FilteredActivity {
private AbstractMap mapBase;
public MapsforgeMapActivity024() {
mapBase = new CGeoMap(this);
}
@Override
public Activity getActivity() {
return this;
}
@Override
protected void onCreate(Bundle icicle) {
mapBase.onCreate(icicle);
}
@Override
protected void onSaveInstanceState(final Bundle outState) {
mapBase.onSaveInstanceState(outState);
}
@Override
protected void onDestroy() {
mapBase.onDestroy();
}
@Override
protected void onPause() {
mapBase.onPause();
}
@Override
protected void onResume() {
mapBase.onResume();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
return mapBase.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
return mapBase.onOptionsItemSelected(item);
}
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
return mapBase.onPrepareOptionsMenu(menu);
}
@Override
protected void onStop() {
mapBase.onStop();
}
@Override
public void superOnCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Override
public boolean superOnCreateOptionsMenu(Menu menu) {
return super.onCreateOptionsMenu(menu);
}
@Override
public void superOnDestroy() {
super.onDestroy();
}
@Override
public boolean superOnOptionsItemSelected(MenuItem item) {
return super.onOptionsItemSelected(item);
}
@Override
public void superOnResume() {
super.onResume();
}
@Override
public void superOnStop() {
super.onStop();
}
@Override
public void superOnPause() {
super.onPause();
}
@Override
public boolean superOnPrepareOptionsMenu(Menu menu) {
return super.onPrepareOptionsMenu(menu);
}
// close activity and open homescreen
@Override
public void goHome(View view) {
mapBase.goHome(view);
}
// open manual entry
@Override
public void goManual(View view) {
mapBase.goManual(view);
}
@Override
public void showFilterMenu(View view) {
// do nothing, the filter bar only shows the global filter
}
}
|