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

Annotation of /android/TrainInfo/src/dk/thoerup/traininfo/StationList.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 552 - (hide annotations) (download)
Tue Jan 26 21:17:26 2010 UTC (14 years, 4 months ago) by torben
File size: 15951 byte(s)
DepartureList: Show a message if it is a metro only station
1 torben 237 package dk.thoerup.traininfo;
2    
3 torben 258 import java.util.ArrayList;
4     import java.util.List;
5    
6 torben 493
7 torben 336 import android.app.AlertDialog;
8 torben 237 import android.app.Dialog;
9     import android.app.ListActivity;
10     import android.app.ProgressDialog;
11 torben 336 import android.content.DialogInterface;
12 torben 237 import android.content.Intent;
13 torben 433 import android.content.SharedPreferences;
14 torben 435 import android.content.SharedPreferences.Editor;
15 torben 319 import android.location.Location;
16 torben 241 import android.os.AsyncTask;
17 torben 237 import android.os.Bundle;
18     import android.os.Handler;
19     import android.os.Message;
20 torben 493
21 torben 433 import android.view.ContextMenu;
22 torben 381 import android.view.LayoutInflater;
23 torben 368 import android.view.Menu;
24     import android.view.MenuItem;
25 torben 237 import android.view.View;
26 torben 433 import android.view.ContextMenu.ContextMenuInfo;
27     import android.view.View.OnCreateContextMenuListener;
28     import android.widget.AdapterView;
29 torben 381 import android.widget.EditText;
30 torben 237 import android.widget.ListView;
31 torben 433 import android.widget.Toast;
32 torben 319 import dk.thoerup.traininfo.provider.ProviderFactory;
33     import dk.thoerup.traininfo.provider.StationProvider;
34 torben 368 import dk.thoerup.traininfo.stationmap.GeoPair;
35     import dk.thoerup.traininfo.stationmap.StationMapView;
36 torben 433 import dk.thoerup.traininfo.util.IntSet;
37 torben 245 import dk.thoerup.traininfo.util.MessageBox;
38 torben 237
39 torben 336 public class StationList extends ListActivity {
40     public static final int GOTLOCATION = 1001;
41     public static final int GOTSTATIONLIST = 1002;
42     public static final int NOPROVIDER = 1003;
43     public static final int LOCATIONFIXTIMEOUT = 1004;
44 torben 368
45 torben 381 public static final int OPTIONS_MAP = 2003;
46 torben 481 public static final int OPTIONS_GPSINFO = 2004;
47    
48 torben 433
49 torben 336
50 torben 237
51 torben 381 public static final int DLG_PROGRESS = 3001;
52     public static final int DLG_STATIONNAME = 3002;
53 torben 237
54 torben 440 static enum LookupMethod {
55     ByLocation,
56     ByName,
57     ByList,
58     MethodNone
59     }
60    
61    
62 torben 336 String dialogMessage = "";
63 torben 237 ProgressDialog dialog;
64 torben 482 LocationLookup locationLookup = null;
65 torben 440 FindStationsTask findStationsTask;
66 torben 381 StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
67 torben 237
68 torben 374 GeoPair location = new GeoPair();
69    
70 torben 258 boolean isRunning = false;
71     List<StationBean> stations = new ArrayList<StationBean>();
72    
73 torben 319 StationProvider stationProvider = ProviderFactory.getStationProvider();
74 torben 381
75     StationListAdapter adapter = null;
76 torben 258
77 torben 433 FavoritesMenu contextMenu = new FavoritesMenu();
78     IntSet favorites = new IntSet();
79 torben 481
80     WelcomeScreen.ListType listType;
81 torben 433 SharedPreferences prefs;
82    
83 torben 381 ///////////////////////////////////////////////////////////////////////////////////////////
84     //Activity call backs
85    
86 torben 258 @SuppressWarnings("unchecked")
87 torben 237 @Override
88     public void onCreate(Bundle savedInstanceState) {
89     super.onCreate(savedInstanceState);
90 torben 481 setContentView(R.layout.stationlist);
91 torben 237
92 torben 241
93 torben 237 adapter = new StationListAdapter(this);
94     setListAdapter(adapter);
95    
96 torben 433 ListView lv = getListView();
97     lv.setOnCreateContextMenuListener(contextMenu);
98    
99 torben 482 locationLookup = new LocationLookup(this, stationsFetched);
100 torben 433
101    
102     prefs = getSharedPreferences("TrainStation", 0);
103     String favoriteString = prefs.getString("favorites", "");
104     if (! favoriteString.equals("") ) {
105     favorites.fromString(favoriteString);
106     }
107    
108 torben 482 listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");
109     setTitle();
110    
111 torben 258 if (savedInstanceState == null) {
112 torben 482
113    
114 torben 481 switch (listType) {
115     case ListNearest:
116     startLookup();
117     break;
118     case ListSearch:
119     this.showDialog(DLG_STATIONNAME);
120     break;
121     case ListFavorites:
122     startFavoriteLookup();
123     break;
124     default:
125     // Not possible !?!
126     }
127    
128 torben 258 } else {
129     stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
130 torben 260 adapter.setStations(stations);
131 torben 374 location = (GeoPair) savedInstanceState.getSerializable("location");
132 torben 258 }
133 torben 482
134 torben 237 }
135 torben 482 protected void setTitle() {
136 torben 484 String dialogTitle = getResources().getString(R.string.app_name);
137 torben 482 switch (listType) {
138     case ListNearest:
139 torben 484 dialogTitle += " - Nearby stations";
140 torben 482 break;
141     case ListSearch:
142 torben 484 dialogTitle += " - Search";
143 torben 482 break;
144     case ListFavorites:
145 torben 484 dialogTitle += " - Favorites";
146 torben 482 break;
147     default:
148     dialogTitle = "";//not possible
149     }
150    
151     setTitle(dialogTitle);
152     }
153    
154    
155 torben 371
156    
157 torben 243 @Override
158     public void onSaveInstanceState(Bundle outState)
159     {
160 torben 258 if (dialog != null && dialog.isShowing())
161 torben 243 dialog.dismiss();
162 torben 258 outState.putSerializable("stations", (ArrayList<StationBean>) stations);
163 torben 374 outState.putSerializable("location", location);
164 torben 482
165 torben 243 }
166 torben 237
167 torben 243
168 torben 237
169     @Override
170 torben 368 public boolean onCreateOptionsMenu(Menu menu) {
171 torben 419 MenuItem item;
172 torben 481
173 torben 439 item = menu.add(0, OPTIONS_MAP, 0, "Station map");
174 torben 419 item.setIcon(android.R.drawable.ic_menu_mapmode);
175    
176 torben 481 item = menu.add(0, OPTIONS_GPSINFO, 0, "GPS Info");
177     item.setIcon(android.R.drawable.ic_menu_mapmode);
178    
179 torben 368 return true;
180     }
181    
182     @Override
183     public boolean onOptionsItemSelected(MenuItem item) {
184 torben 381 boolean retval = true;
185    
186 torben 481 //TODO: Cleanup
187 torben 368 switch (item.getItemId()) {
188     case OPTIONS_MAP:
189    
190     Intent intent = new Intent(this,StationMapView.class);
191    
192     ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
193     for (StationBean st : stations ) {
194 torben 369 stationPoints.add( new GeoPair(st.getLatitude(), st.getLongitude(), st.getName()) );
195 torben 368 }
196    
197     intent.putExtra("stations", stationPoints);
198    
199     startActivity(intent);
200     break;
201 torben 481 case OPTIONS_GPSINFO:
202 torben 482 Location loc = locationLookup.getLocation();
203 torben 371 StringBuffer message = new StringBuffer();
204 torben 401 message.append("Location info:\n");
205     message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");
206     message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");
207 torben 546 message.append("-Latitude: ").append(loc != null ? loc.getLatitude() : "-").append("\n");
208     message.append("-Longitude: ").append(loc != null ? loc.getLongitude() : "-").append("\n");
209 torben 371 MessageBox.showMessage(this, message.toString());
210     break;
211 torben 368 default:
212     retval = super.onOptionsItemSelected(item);
213     }
214    
215     return retval;
216     }
217 torben 433
218    
219 torben 368
220     @Override
221 torben 433 public boolean onContextItemSelected(MenuItem item) {
222     contextMenu.onContextItemSelected(item);
223     return true;
224    
225    
226     }
227    
228    
229    
230    
231     @Override
232 torben 237 protected Dialog onCreateDialog(int id) {
233     switch (id) {
234     case DLG_PROGRESS:
235     ProgressDialog dlg = new ProgressDialog(this);
236     dlg.setMessage("Wait for location fix");
237     dlg.setCancelable(false);
238 torben 336 return dlg;
239 torben 381 case DLG_STATIONNAME:
240     LayoutInflater factory = LayoutInflater.from(this);
241     final View rootView = factory.inflate(R.layout.textinput, null);
242    
243    
244     AlertDialog.Builder builder = new AlertDialog.Builder(this);
245    
246     builder.setTitle("Station search");
247     builder.setView(rootView);
248     builder.setCancelable(true);
249     builder.setPositiveButton("Search", new DialogInterface.OnClickListener() {
250     public void onClick(DialogInterface dialog, int which) {
251     EditText et = (EditText) rootView.findViewById(R.id.EditText);
252     dialog.dismiss();
253     if (et.getText().toString().length() >= 2) {
254     startNameSearch(et.getText().toString());
255     } else {
256 torben 382 MessageBox.showMessage(StationList.this, "Two characters minimum" );
257 torben 381 }
258     }
259     });
260     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
261     public void onClick(DialogInterface dialog, int which) {
262     dialog.dismiss();
263     }
264     });
265     return builder.create();
266    
267 torben 237 default:
268     return super.onCreateDialog(id);
269     }
270    
271     }
272    
273    
274     @Override
275     protected void onPrepareDialog(int id, Dialog dialog) {
276     super.onPrepareDialog(id, dialog);
277     switch (id) {
278     case DLG_PROGRESS:
279     this.dialog = (ProgressDialog) dialog;
280 torben 336 if (!dialogMessage.equals("")) {
281     this.dialog.setMessage(dialogMessage);
282     dialogMessage = "";
283     }
284 torben 237 break;
285     }
286     }
287 torben 381
288     @Override
289     protected void onListItemClick(ListView l, View v, int position, long id) {
290     super.onListItemClick(l, v, position, id);
291    
292     StationBean station = stations.get(position);
293 torben 237
294 torben 381 double latitude = station.getLatitude();
295     double longitude = station.getLongitude();
296    
297    
298    
299     Intent intent = new Intent(this, DepartureList.class);
300     intent.putExtra("name", station.getName());
301     intent.putExtra("distance", station.getDistance());
302     intent.putExtra("latitude", latitude);
303     intent.putExtra("longitude", longitude);
304     intent.putExtra("stationid", station.getId());
305     intent.putExtra("address", station.getAddress());
306 torben 552 intent.putExtra("isregional", station.isRegional());
307     intent.putExtra("isstrain", station.isSTrain());
308     intent.putExtra("ismetro", station.isMetro());
309 torben 381 startActivity(intent);
310     }
311    
312     /////////////////////////////////////////////////////////////
313     //
314    
315 torben 237 public void startLookup() {
316     isRunning = true;
317 torben 381 dialogMessage = "Wait for location fix";
318 torben 237 showDialog(DLG_PROGRESS);
319    
320 torben 482 locationLookup.locateStations();
321 torben 336 stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
322 torben 237 }
323 torben 381
324     void startNameSearch(String name) {
325     dialogMessage = "Finding stations by name";
326     showDialog(DLG_PROGRESS);
327 torben 237
328 torben 440 findStationsTask = new FindStationsTask();
329 torben 482 findStationsTask.searchByName(name, locationLookup.getLocation());
330 torben 440 findStationsTask.execute();
331 torben 381
332     }
333 torben 433
334     public void startFavoriteLookup() {
335    
336 torben 440 if (favorites.size() > 0) {
337 torben 433 dialogMessage = "Loading favorites";
338     showDialog(DLG_PROGRESS);
339 torben 237
340 torben 440 findStationsTask = new FindStationsTask();
341 torben 482 findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
342 torben 440 findStationsTask.execute();
343 torben 433 } else {
344     MessageBox.showMessage(this, "Favorite list is empty");
345     }
346     }
347 torben 381
348 torben 433
349 torben 381
350     void startLocatorTask()
351     {
352     dialogMessage = "Finding nearby stations";
353     showDialog(DLG_PROGRESS);
354    
355 torben 440 findStationsTask = new FindStationsTask();
356 torben 482 findStationsTask.searchByLocation( locationLookup.getLocation() );
357 torben 440 findStationsTask.execute();
358 torben 381 }
359    
360    
361 torben 493 /* TODO: Remove this no longer needed function
362 torben 381 String lookupAddress(double latitude, double longitude) {
363    
364     Geocoder coder = new Geocoder(this, new Locale("da"));
365     StringBuilder sb = new StringBuilder();
366     Log.i("lookupaddr", "" + latitude + "/" + longitude);
367     try {
368     List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);
369     Address addr = addressList.get(0);
370    
371    
372     int max = addr.getMaxAddressLineIndex();
373     for (int i=0; i<max; i++) {
374     if (i>0)
375     sb.append(", ");
376    
377     sb.append(addr.getAddressLine(i));
378     }
379    
380    
381     } catch (Exception e) {
382     Log.e("DepartureList", "geocoder failed", e);
383     }
384    
385     return sb.toString();
386 torben 493 }*/
387 torben 381
388    
389     ////////////////////////////////////////////////////////////////////////////
390     // Inner classes
391    
392     class StationsFetchedHandler extends Handler {
393 torben 237 @Override
394     public void handleMessage(Message msg) {
395 torben 336
396 torben 237 switch (msg.what) {
397     case GOTLOCATION:
398 torben 336 dismissDialog(DLG_PROGRESS);
399    
400     startLocatorTask();
401 torben 482 location = GeoPair.fromLocation( locationLookup.getLocation() );
402 torben 336
403 torben 237 break;
404 torben 319
405 torben 237 case NOPROVIDER:
406 torben 336 dismissDialog(DLG_PROGRESS);
407     MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
408 torben 237 break;
409 torben 336 case LOCATIONFIXTIMEOUT:
410 torben 237 if (isRunning) {
411 torben 482 locationLookup.stopSearch();
412     if (locationLookup.hasLocation()) {
413 torben 336 stationsFetched.sendEmptyMessage( GOTLOCATION );
414     } else {
415     dismissDialog(DLG_PROGRESS);
416    
417     AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);
418 torben 420 builder.setMessage("Location fix timed out");
419 torben 336 builder.setCancelable(true);
420     builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
421     public void onClick(DialogInterface dialog, int id) {
422     dialog.dismiss();
423     startLookup();
424    
425     }
426     });
427     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
428     public void onClick(DialogInterface dialog, int id) {
429     dialog.dismiss();
430     }
431     });
432     builder.show();
433    
434 torben 285 }
435 torben 237 }
436     break;
437     }
438     isRunning = false;
439     }
440     };
441 torben 381
442 torben 237
443 torben 440 class FindStationsTask extends AsyncTask<Void,Void,Void> {
444 torben 336
445 torben 381 LookupMethod method = LookupMethod.MethodNone;
446     boolean success;
447     String name;
448     Location loc;
449 torben 433 String ids;
450 torben 237
451 torben 381 public void searchByName(String n, Location l) {
452 torben 317
453 torben 381 method = LookupMethod.ByName;
454     loc = l;
455     name = n;
456 torben 317 }
457    
458 torben 381 public void searchByLocation(Location l) {
459     method = LookupMethod.ByLocation;
460     loc = l;
461     }
462    
463 torben 433 public void searchByIds(String id, Location l) {
464    
465     method = LookupMethod.ByList;
466     loc = l;
467     ids = id;
468     }
469    
470 torben 241 @Override
471     protected void onPreExecute() {
472 torben 258
473 torben 381 if (method.equals(LookupMethod.MethodNone))
474     throw new RuntimeException("Method not set");
475 torben 241 super.onPreExecute();
476     }
477    
478     @Override
479     protected Void doInBackground(Void... params) {
480 torben 473
481     switch (method) {
482     case ByLocation:
483 torben 381 success = stationProvider.lookupStations(loc);
484 torben 473 break;
485     case ByName:
486 torben 433 success = stationProvider.lookupStationsByName(name);
487 torben 473 break;
488     case ByList:
489 torben 433 success = stationProvider.lookupStationsByIds(ids);
490 torben 473 break;
491     default:
492     success = false; // not possible
493     }
494 torben 433
495 torben 473
496 torben 381 Location dummy = new Location("gps");
497 torben 319 List<StationBean> stations = stationProvider.getStations();
498 torben 381
499     for (StationBean station : stations) {
500 torben 493
501 torben 478 if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
502     if (loc != null) { //only do the distance calc if we have a location
503 torben 476 dummy.setLatitude(station.getLatitude());
504     dummy.setLongitude(station.getLongitude());
505     station.setDistance( (int)loc.distanceTo(dummy) );
506 torben 478 } else {
507     station.setDistance(0);
508 torben 476 }
509 torben 381 }
510 torben 478
511 torben 381 }
512 torben 317
513 torben 241 return null;
514     }
515    
516     @Override
517     protected void onPostExecute(Void result) {
518     super.onPostExecute(result);
519 torben 319 dialog.dismiss();
520    
521 torben 473
522 torben 319 if (success) {
523     if (stationProvider.getStations().size() == 0)
524 torben 336 MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
525 torben 319 stations = stationProvider.getStations();
526 torben 481 adapter.setStations( stations );
527 torben 319
528     } else { //communication or parse errors
529 torben 336 AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);
530     builder.setMessage("Error on finding nearby stations");
531     builder.setCancelable(true);
532     builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
533     public void onClick(DialogInterface dialog, int id) {
534     dialog.dismiss();
535    
536     stationsFetched.post( new Runnable() {
537     @Override
538     public void run() {
539     startLocatorTask();
540     }
541     });
542     }
543     });
544     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
545     public void onClick(DialogInterface dialog, int id) {
546     dialog.dismiss();
547     }
548     });
549     builder.show();
550 torben 319 }
551 torben 241 }
552     }
553 torben 433
554    
555     class FavoritesMenu implements OnCreateContextMenuListener {
556     private final static int FAVORITES_ADD = 9001;
557     private final static int FAVORITES_REMOVE = 9002;
558    
559     private int selectedPosition;
560    
561    
562     @Override
563     public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
564    
565     AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
566     selectedPosition = info.position;
567     int stationID = stations.get(selectedPosition).getId();
568    
569 torben 441 if (!favorites.contains(stationID)) {
570 torben 433 menu.add(0, FAVORITES_ADD, 0, "Add to favorites");
571     } else {
572     menu.add(0, FAVORITES_REMOVE, 0, "Remove from favorites");
573     }
574    
575     }
576    
577     public void onContextItemSelected(MenuItem item) {
578     StationBean sb = stations.get(selectedPosition);
579    
580     int stationID = sb.getId();
581     if (item.getItemId() == FAVORITES_ADD) {
582     favorites.add(stationID);
583     Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
584     } else {
585 torben 473
586 torben 433 favorites.remove(stationID);
587     Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
588 torben 473
589 torben 481
590     if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
591 torben 473 stations.remove(selectedPosition);
592     adapter.notifyDataSetChanged();
593     }
594 torben 433 }
595 torben 435 Editor ed = prefs.edit();
596     ed.putString("favorites", favorites.toString());
597     ed.commit();
598 torben 433 }
599     }
600 torben 237 }

  ViewVC Help
Powered by ViewVC 1.1.20