/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/DepartureList.java
ViewVC logotype

Contents of /android/TrainInfo/src/dk/thoerup/traininfo/DepartureList.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 985 - (show annotations) (download)
Sun Jul 11 16:01:41 2010 UTC (13 years, 10 months ago) by torben
File size: 9408 byte(s)
externalize and translate 2 more strings
1 package dk.thoerup.traininfo;
2
3 import static dk.thoerup.traininfo.R.string.departurelist_fetchdepartures;
4 import static dk.thoerup.traininfo.R.string.departurelist_fetcharrivals;
5 import static dk.thoerup.traininfo.R.string.generic_cancel;
6 import static dk.thoerup.traininfo.R.string.generic_retry;
7
8
9 import java.text.NumberFormat;
10
11
12 import android.app.AlertDialog;
13 import android.app.Dialog;
14 import android.app.ListActivity;
15 import android.app.ProgressDialog;
16 import android.content.DialogInterface;
17 import android.content.Intent;
18 import android.net.Uri;
19 import android.os.AsyncTask;
20 import android.os.Bundle;
21 import android.util.Log;
22 import android.view.Menu;
23 import android.view.MenuItem;
24 import android.view.View;
25 import android.view.View.OnClickListener;
26 import android.widget.Button;
27 import android.widget.ListView;
28 import android.widget.TextView;
29 import dk.thoerup.traininfo.provider.DepartureProvider;
30 import dk.thoerup.traininfo.provider.ProviderFactory;
31 import dk.thoerup.traininfo.util.MessageBox;
32
33 public class DepartureList extends ListActivity {
34
35 public static final int DLG_PROGRESS = 1;
36 static final int MENU_MAP = 100;
37 static final int MENU_NOTIFICATIONS = 101;
38
39
40 DepartureListAdapter adapter;
41 DepartureProvider provider;
42 DepartureBean departures;
43
44 int selectedItemId;
45 //DepartureBean currentDeparture;
46
47 ProgressDialog pgDialog;
48
49 DepartureFetcher fetcher;
50
51 StationBean station;
52
53 boolean arrival = false;
54
55
56 @Override
57 protected void onCreate(Bundle savedInstanceState) {
58 super.onCreate(savedInstanceState);
59 setContentView(R.layout.departurelist);
60
61 adapter = new DepartureListAdapter(this);
62 setListAdapter(adapter);
63
64 Intent launchedBy = getIntent();
65
66 station = (StationBean) launchedBy.getSerializableExtra("stationbean");
67
68 ((TextView) findViewById(R.id.stationName)).setText( station.getName() );
69
70
71 ((TextView) findViewById(R.id.stationAddr)).setText( station.getAddress() );
72
73 final Button departureBtn = (Button) findViewById(R.id.departurebtn);
74 final Button arrivalBtn = (Button) findViewById(R.id.arrivalbtn);
75
76 departureBtn.setOnClickListener( new OnClickListener() {
77 @Override
78 public void onClick(View arg0) {
79 arrivalBtn.setBackgroundResource(R.drawable.custom_button);
80 departureBtn.setBackgroundResource(R.drawable.custom_button_hilight);
81 arrival = false;
82 startDepartureFetcher();
83 }
84 });
85 arrivalBtn.setOnClickListener( new OnClickListener() {
86 @Override
87 public void onClick(View arg0) {
88 arrivalBtn.setBackgroundResource(R.drawable.custom_button_hilight);
89 departureBtn.setBackgroundResource(R.drawable.custom_button);
90 arrival = true;
91 startDepartureFetcher();
92 }
93 });
94
95
96
97
98 // findViewById(R.id.header).setOnClickListener( mapLauncher );
99
100 int distance = station.getDistance();
101 if (distance != 0) {
102 NumberFormat format = NumberFormat.getNumberInstance();
103 format.setMaximumFractionDigits(1);
104 format.setMinimumFractionDigits(1);
105
106 ((TextView) findViewById(R.id.stationDistance)).setText( format.format((double)distance/1000.0) + " km." );
107 } else {
108 ((TextView) findViewById(R.id.stationDistance)).setVisibility(View.GONE);
109 }
110
111
112 if (station.isRegional() == false && station.isSTrain() == false) {
113 getListView().setVisibility( View.GONE );
114 findViewById(R.id.metroonly).setVisibility( View.VISIBLE );
115 departureBtn.setVisibility( View.GONE );
116 arrivalBtn.setVisibility(View.GONE);
117
118 } else {
119 provider = ProviderFactory.getDepartureProvider();
120
121 if (savedInstanceState == null) {
122 startDepartureFetcher();
123 } else {
124 departures = (DepartureBean) savedInstanceState.getSerializable("departures");
125 adapter.setDepartures(departures.entries);
126 selectedItemId = savedInstanceState.getInt("selectedItemId");
127
128 if ( hasNotifications() ) {
129 findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);
130 }
131
132 }
133 }
134 }
135
136 boolean hasNotifications() {
137 return (departures != null && departures.notifications.size() > 0);
138 }
139
140 @Override
141 public void onSaveInstanceState(Bundle outState)
142 {
143 if (pgDialog != null && pgDialog.isShowing())
144 dismissDialog(DLG_PROGRESS);
145
146 outState.putInt("selectedItemId", selectedItemId);
147
148 outState.putSerializable("departures", departures);
149 }
150
151
152
153 @Override
154 protected void onDestroy() {
155 super.onDestroy();
156
157 if (fetcher != null) {
158 fetcher.cancel(true);
159 }
160 }
161
162 @Override
163 protected void onListItemClick(ListView l, View v, int position, long id) {
164 super.onListItemClick(l, v, position, id);
165
166 selectedItemId = position;
167
168 DepartureEntry dep = departures.entries.get(selectedItemId);
169
170 Intent intent = new Intent(this, TimetableList.class);
171 intent.putExtra("departure", dep);
172
173 startActivity(intent);
174
175 }
176
177
178 @Override
179 protected void onPrepareDialog(int id, Dialog dialog) {
180 super.onPrepareDialog(id, dialog);
181
182 switch (id) {
183 case DLG_PROGRESS:
184 pgDialog = (ProgressDialog) dialog;
185 int messageId = arrival == false ? departurelist_fetchdepartures : departurelist_fetcharrivals;
186 pgDialog.setMessage( getString(messageId) );
187 break;
188 }
189 }
190
191 @Override
192 protected Dialog onCreateDialog(int id) {
193 switch (id) {
194 case DLG_PROGRESS:
195
196 ProgressDialog dlg = new ProgressDialog(this);
197 dlg.setCancelable(true);
198 return dlg;
199 default:
200 return super.onCreateDialog(id);
201 }
202 }
203
204
205
206
207
208 @Override
209 public boolean onCreateOptionsMenu(Menu menu) {
210 MenuItem item;
211
212 item = menu.add(0, MENU_MAP, 0, getString(R.string.departurelist_showonmap) );
213 item.setIcon(android.R.drawable.ic_menu_mapmode);
214
215 item = menu.add(0, MENU_NOTIFICATIONS, 0, getString(R.string.departurelist_notifications) );
216 item.setIcon(android.R.drawable.ic_menu_info_details);
217
218
219 boolean notifEnabled = hasNotifications();
220 item.setEnabled(notifEnabled);
221
222
223 return true;
224 }
225
226 @Override
227 public boolean onOptionsItemSelected(MenuItem item) {
228 boolean res;
229 switch(item.getItemId()) {
230 case MENU_MAP:
231 Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
232 startActivity( new Intent(Intent.ACTION_VIEW, uri));
233 res = true;
234 break;
235 case MENU_NOTIFICATIONS:
236 Intent i = new Intent(this,dk.thoerup.traininfo.NotificationList.class);
237 i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);
238 startActivity(i);
239 res = true;
240 break;
241 default:
242 res = super.onOptionsItemSelected(item);
243 }
244 return res;
245 }
246
247 void startDepartureFetcher() {
248 showDialog(DLG_PROGRESS);
249 fetcher = new DepartureFetcher();
250 fetcher.execute(station.getId());
251 }
252
253 class DialogDismisser implements View.OnClickListener {
254
255 Dialog dlg;
256 public DialogDismisser(Dialog d) {
257 dlg = d;
258 }
259
260 @Override
261 public void onClick(View v) {
262 if (dlg.isShowing())
263 dlg.dismiss();
264 }
265 }
266
267 /*View.OnClickListener mapLauncher = new View.OnClickListener() {
268 @Override
269 public void onClick(View v) {
270 Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
271 startActivity( new Intent(Intent.ACTION_VIEW, uri));
272 }
273 };*/
274
275
276
277 class DepartureFetcher extends AsyncTask<Integer, Void, Void> {
278
279 boolean success;
280
281 @Override
282 protected void onPostExecute(Void result) {
283 super.onPostExecute(result);
284
285
286 pgDialog.dismiss();
287
288 if (success) {
289 DepartureList.this.getListView().setVisibility(View.GONE); //Experimental, inspired by http://osdir.com/ml/Android-Developers/2010-04/msg01198.html
290 adapter.setDepartures(departures.entries);
291 DepartureList.this.getListView().setVisibility(View.VISIBLE);
292
293
294 if ( hasNotifications() ) {
295 findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);
296 }
297
298 if (departures.entries.size() == 0) {
299 MessageBox.showMessage(DepartureList.this, "No departures found", true);
300 }
301 } else { // communication or parse error
302 AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);
303 builder.setMessage("Error finding departures");
304 builder.setCancelable(true);
305 builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
306 public void onClick(DialogInterface dialog, int id) {
307 dialog.dismiss();
308 startDepartureFetcher();
309
310 }
311 });
312 builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
313 public void onClick(DialogInterface dialog, int id) {
314 dialog.dismiss();
315 DepartureList.this.finish();
316 }
317 });
318
319 try {
320 builder.show();
321 } catch (android.view.WindowManager.BadTokenException e) {
322 Log.i("DepartureList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
323 }
324 }
325 }
326
327 @Override
328 protected Void doInBackground(Integer... params) {
329 success = provider.lookupDepartures(params[0], DepartureList.this.arrival);
330 departures = provider.getDepartures(params[0], DepartureList.this.arrival);
331 return null;
332 }
333
334 }
335 }

  ViewVC Help
Powered by ViewVC 1.1.20