/[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 546 - (hide annotations) (download)
Fri Jan 22 11:28:56 2010 UTC (14 years, 4 months ago) by torben
File size: 15796 byte(s)
Bump version to 0.5.4
add IE (Intercity Europe) icon
in gps status dialog also show latitude + longitude
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     startActivity(intent);
307     }
308    
309     /////////////////////////////////////////////////////////////
310     //
311    
312 torben 237 public void startLookup() {
313     isRunning = true;
314 torben 381 dialogMessage = "Wait for location fix";
315 torben 237 showDialog(DLG_PROGRESS);
316    
317 torben 482 locationLookup.locateStations();
318 torben 336 stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
319 torben 237 }
320 torben 381
321     void startNameSearch(String name) {
322     dialogMessage = "Finding stations by name";
323     showDialog(DLG_PROGRESS);
324 torben 237
325 torben 440 findStationsTask = new FindStationsTask();
326 torben 482 findStationsTask.searchByName(name, locationLookup.getLocation());
327 torben 440 findStationsTask.execute();
328 torben 381
329     }
330 torben 433
331     public void startFavoriteLookup() {
332    
333 torben 440 if (favorites.size() > 0) {
334 torben 433 dialogMessage = "Loading favorites";
335     showDialog(DLG_PROGRESS);
336 torben 237
337 torben 440 findStationsTask = new FindStationsTask();
338 torben 482 findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
339 torben 440 findStationsTask.execute();
340 torben 433 } else {
341     MessageBox.showMessage(this, "Favorite list is empty");
342     }
343     }
344 torben 381
345 torben 433
346 torben 381
347     void startLocatorTask()
348     {
349     dialogMessage = "Finding nearby stations";
350     showDialog(DLG_PROGRESS);
351    
352 torben 440 findStationsTask = new FindStationsTask();
353 torben 482 findStationsTask.searchByLocation( locationLookup.getLocation() );
354 torben 440 findStationsTask.execute();
355 torben 381 }
356    
357    
358 torben 493 /* TODO: Remove this no longer needed function
359 torben 381 String lookupAddress(double latitude, double longitude) {
360    
361     Geocoder coder = new Geocoder(this, new Locale("da"));
362     StringBuilder sb = new StringBuilder();
363     Log.i("lookupaddr", "" + latitude + "/" + longitude);
364     try {
365     List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);
366     Address addr = addressList.get(0);
367    
368    
369     int max = addr.getMaxAddressLineIndex();
370     for (int i=0; i<max; i++) {
371     if (i>0)
372     sb.append(", ");
373    
374     sb.append(addr.getAddressLine(i));
375     }
376    
377    
378     } catch (Exception e) {
379     Log.e("DepartureList", "geocoder failed", e);
380     }
381    
382     return sb.toString();
383 torben 493 }*/
384 torben 381
385    
386     ////////////////////////////////////////////////////////////////////////////
387     // Inner classes
388    
389     class StationsFetchedHandler extends Handler {
390 torben 237 @Override
391     public void handleMessage(Message msg) {
392 torben 336
393 torben 237 switch (msg.what) {
394     case GOTLOCATION:
395 torben 336 dismissDialog(DLG_PROGRESS);
396    
397     startLocatorTask();
398 torben 482 location = GeoPair.fromLocation( locationLookup.getLocation() );
399 torben 336
400 torben 237 break;
401 torben 319
402 torben 237 case NOPROVIDER:
403 torben 336 dismissDialog(DLG_PROGRESS);
404     MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
405 torben 237 break;
406 torben 336 case LOCATIONFIXTIMEOUT:
407 torben 237 if (isRunning) {
408 torben 482 locationLookup.stopSearch();
409     if (locationLookup.hasLocation()) {
410 torben 336 stationsFetched.sendEmptyMessage( GOTLOCATION );
411     } else {
412     dismissDialog(DLG_PROGRESS);
413    
414     AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);
415 torben 420 builder.setMessage("Location fix timed out");
416 torben 336 builder.setCancelable(true);
417     builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
418     public void onClick(DialogInterface dialog, int id) {
419     dialog.dismiss();
420     startLookup();
421    
422     }
423     });
424     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
425     public void onClick(DialogInterface dialog, int id) {
426     dialog.dismiss();
427     }
428     });
429     builder.show();
430    
431 torben 285 }
432 torben 237 }
433     break;
434     }
435     isRunning = false;
436     }
437     };
438 torben 381
439 torben 237
440 torben 440 class FindStationsTask extends AsyncTask<Void,Void,Void> {
441 torben 336
442 torben 381 LookupMethod method = LookupMethod.MethodNone;
443     boolean success;
444     String name;
445     Location loc;
446 torben 433 String ids;
447 torben 237
448 torben 381 public void searchByName(String n, Location l) {
449 torben 317
450 torben 381 method = LookupMethod.ByName;
451     loc = l;
452     name = n;
453 torben 317 }
454    
455 torben 381 public void searchByLocation(Location l) {
456     method = LookupMethod.ByLocation;
457     loc = l;
458     }
459    
460 torben 433 public void searchByIds(String id, Location l) {
461    
462     method = LookupMethod.ByList;
463     loc = l;
464     ids = id;
465     }
466    
467 torben 241 @Override
468     protected void onPreExecute() {
469 torben 258
470 torben 381 if (method.equals(LookupMethod.MethodNone))
471     throw new RuntimeException("Method not set");
472 torben 241 super.onPreExecute();
473     }
474    
475     @Override
476     protected Void doInBackground(Void... params) {
477 torben 473
478     switch (method) {
479     case ByLocation:
480 torben 381 success = stationProvider.lookupStations(loc);
481 torben 473 break;
482     case ByName:
483 torben 433 success = stationProvider.lookupStationsByName(name);
484 torben 473 break;
485     case ByList:
486 torben 433 success = stationProvider.lookupStationsByIds(ids);
487 torben 473 break;
488     default:
489     success = false; // not possible
490     }
491 torben 433
492 torben 473
493 torben 381 Location dummy = new Location("gps");
494 torben 319 List<StationBean> stations = stationProvider.getStations();
495 torben 381
496     for (StationBean station : stations) {
497 torben 493
498 torben 478 if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
499     if (loc != null) { //only do the distance calc if we have a location
500 torben 476 dummy.setLatitude(station.getLatitude());
501     dummy.setLongitude(station.getLongitude());
502     station.setDistance( (int)loc.distanceTo(dummy) );
503 torben 478 } else {
504     station.setDistance(0);
505 torben 476 }
506 torben 381 }
507 torben 478
508 torben 381 }
509 torben 317
510 torben 241 return null;
511     }
512    
513     @Override
514     protected void onPostExecute(Void result) {
515     super.onPostExecute(result);
516 torben 319 dialog.dismiss();
517    
518 torben 473
519 torben 319 if (success) {
520     if (stationProvider.getStations().size() == 0)
521 torben 336 MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
522 torben 319 stations = stationProvider.getStations();
523 torben 481 adapter.setStations( stations );
524 torben 319
525     } else { //communication or parse errors
526 torben 336 AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);
527     builder.setMessage("Error on finding nearby stations");
528     builder.setCancelable(true);
529     builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
530     public void onClick(DialogInterface dialog, int id) {
531     dialog.dismiss();
532    
533     stationsFetched.post( new Runnable() {
534     @Override
535     public void run() {
536     startLocatorTask();
537     }
538     });
539     }
540     });
541     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
542     public void onClick(DialogInterface dialog, int id) {
543     dialog.dismiss();
544     }
545     });
546     builder.show();
547 torben 319 }
548 torben 241 }
549     }
550 torben 433
551    
552     class FavoritesMenu implements OnCreateContextMenuListener {
553     private final static int FAVORITES_ADD = 9001;
554     private final static int FAVORITES_REMOVE = 9002;
555    
556     private int selectedPosition;
557    
558    
559     @Override
560     public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
561    
562     AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
563     selectedPosition = info.position;
564     int stationID = stations.get(selectedPosition).getId();
565    
566 torben 441 if (!favorites.contains(stationID)) {
567 torben 433 menu.add(0, FAVORITES_ADD, 0, "Add to favorites");
568     } else {
569     menu.add(0, FAVORITES_REMOVE, 0, "Remove from favorites");
570     }
571    
572     }
573    
574     public void onContextItemSelected(MenuItem item) {
575     StationBean sb = stations.get(selectedPosition);
576    
577     int stationID = sb.getId();
578     if (item.getItemId() == FAVORITES_ADD) {
579     favorites.add(stationID);
580     Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
581     } else {
582 torben 473
583 torben 433 favorites.remove(stationID);
584     Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
585 torben 473
586 torben 481
587     if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
588 torben 473 stations.remove(selectedPosition);
589     adapter.notifyDataSetChanged();
590     }
591 torben 433 }
592 torben 435 Editor ed = prefs.edit();
593     ed.putString("favorites", favorites.toString());
594     ed.commit();
595 torben 433 }
596     }
597 torben 237 }

  ViewVC Help
Powered by ViewVC 1.1.20