/[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 554 - (hide annotations) (download)
Wed Jan 27 05:51:45 2010 UTC (14 years, 4 months ago) by torben
File size: 15969 byte(s)
Nicer location info dialog
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 torben 554 if (loc != null) {
206     message.append("-Obtained by: ").append( loc.getProvider() ).append("\n");
207     message.append("-Accuracy: ").append( (int)loc.getAccuracy()).append("m\n");
208     message.append("-Latitude: ").append( loc.getLatitude()).append("\n");
209     message.append("-Longitude: ").append( loc.getLongitude() ).append("\n");
210     } else {
211     message.append(" - No location data!");
212     }
213    
214 torben 371 MessageBox.showMessage(this, message.toString());
215     break;
216 torben 368 default:
217     retval = super.onOptionsItemSelected(item);
218     }
219    
220     return retval;
221     }
222 torben 433
223    
224 torben 368
225     @Override
226 torben 433 public boolean onContextItemSelected(MenuItem item) {
227     contextMenu.onContextItemSelected(item);
228     return true;
229    
230    
231     }
232    
233    
234    
235    
236     @Override
237 torben 237 protected Dialog onCreateDialog(int id) {
238     switch (id) {
239     case DLG_PROGRESS:
240     ProgressDialog dlg = new ProgressDialog(this);
241     dlg.setMessage("Wait for location fix");
242     dlg.setCancelable(false);
243 torben 336 return dlg;
244 torben 381 case DLG_STATIONNAME:
245     LayoutInflater factory = LayoutInflater.from(this);
246     final View rootView = factory.inflate(R.layout.textinput, null);
247    
248    
249     AlertDialog.Builder builder = new AlertDialog.Builder(this);
250    
251     builder.setTitle("Station search");
252     builder.setView(rootView);
253     builder.setCancelable(true);
254     builder.setPositiveButton("Search", new DialogInterface.OnClickListener() {
255     public void onClick(DialogInterface dialog, int which) {
256     EditText et = (EditText) rootView.findViewById(R.id.EditText);
257     dialog.dismiss();
258     if (et.getText().toString().length() >= 2) {
259     startNameSearch(et.getText().toString());
260     } else {
261 torben 382 MessageBox.showMessage(StationList.this, "Two characters minimum" );
262 torben 381 }
263     }
264     });
265     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
266     public void onClick(DialogInterface dialog, int which) {
267     dialog.dismiss();
268     }
269     });
270     return builder.create();
271    
272 torben 237 default:
273     return super.onCreateDialog(id);
274     }
275    
276     }
277    
278    
279     @Override
280     protected void onPrepareDialog(int id, Dialog dialog) {
281     super.onPrepareDialog(id, dialog);
282     switch (id) {
283     case DLG_PROGRESS:
284     this.dialog = (ProgressDialog) dialog;
285 torben 336 if (!dialogMessage.equals("")) {
286     this.dialog.setMessage(dialogMessage);
287     dialogMessage = "";
288     }
289 torben 237 break;
290     }
291     }
292 torben 381
293     @Override
294     protected void onListItemClick(ListView l, View v, int position, long id) {
295     super.onListItemClick(l, v, position, id);
296    
297     StationBean station = stations.get(position);
298 torben 237
299 torben 381 double latitude = station.getLatitude();
300     double longitude = station.getLongitude();
301    
302    
303    
304     Intent intent = new Intent(this, DepartureList.class);
305     intent.putExtra("name", station.getName());
306     intent.putExtra("distance", station.getDistance());
307     intent.putExtra("latitude", latitude);
308     intent.putExtra("longitude", longitude);
309     intent.putExtra("stationid", station.getId());
310     intent.putExtra("address", station.getAddress());
311 torben 552 intent.putExtra("isregional", station.isRegional());
312     intent.putExtra("isstrain", station.isSTrain());
313     intent.putExtra("ismetro", station.isMetro());
314 torben 381 startActivity(intent);
315     }
316    
317     /////////////////////////////////////////////////////////////
318     //
319    
320 torben 237 public void startLookup() {
321     isRunning = true;
322 torben 381 dialogMessage = "Wait for location fix";
323 torben 237 showDialog(DLG_PROGRESS);
324    
325 torben 482 locationLookup.locateStations();
326 torben 336 stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
327 torben 237 }
328 torben 381
329     void startNameSearch(String name) {
330     dialogMessage = "Finding stations by name";
331     showDialog(DLG_PROGRESS);
332 torben 237
333 torben 440 findStationsTask = new FindStationsTask();
334 torben 482 findStationsTask.searchByName(name, locationLookup.getLocation());
335 torben 440 findStationsTask.execute();
336 torben 381
337     }
338 torben 433
339     public void startFavoriteLookup() {
340    
341 torben 440 if (favorites.size() > 0) {
342 torben 433 dialogMessage = "Loading favorites";
343     showDialog(DLG_PROGRESS);
344 torben 237
345 torben 440 findStationsTask = new FindStationsTask();
346 torben 482 findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
347 torben 440 findStationsTask.execute();
348 torben 433 } else {
349     MessageBox.showMessage(this, "Favorite list is empty");
350     }
351     }
352 torben 381
353 torben 433
354 torben 381
355     void startLocatorTask()
356     {
357     dialogMessage = "Finding nearby stations";
358     showDialog(DLG_PROGRESS);
359    
360 torben 440 findStationsTask = new FindStationsTask();
361 torben 482 findStationsTask.searchByLocation( locationLookup.getLocation() );
362 torben 440 findStationsTask.execute();
363 torben 381 }
364    
365    
366 torben 493 /* TODO: Remove this no longer needed function
367 torben 381 String lookupAddress(double latitude, double longitude) {
368    
369     Geocoder coder = new Geocoder(this, new Locale("da"));
370     StringBuilder sb = new StringBuilder();
371     Log.i("lookupaddr", "" + latitude + "/" + longitude);
372     try {
373     List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);
374     Address addr = addressList.get(0);
375    
376    
377     int max = addr.getMaxAddressLineIndex();
378     for (int i=0; i<max; i++) {
379     if (i>0)
380     sb.append(", ");
381    
382     sb.append(addr.getAddressLine(i));
383     }
384    
385    
386     } catch (Exception e) {
387     Log.e("DepartureList", "geocoder failed", e);
388     }
389    
390     return sb.toString();
391 torben 493 }*/
392 torben 381
393    
394     ////////////////////////////////////////////////////////////////////////////
395     // Inner classes
396    
397     class StationsFetchedHandler extends Handler {
398 torben 237 @Override
399     public void handleMessage(Message msg) {
400 torben 336
401 torben 237 switch (msg.what) {
402     case GOTLOCATION:
403 torben 336 dismissDialog(DLG_PROGRESS);
404    
405     startLocatorTask();
406 torben 482 location = GeoPair.fromLocation( locationLookup.getLocation() );
407 torben 336
408 torben 237 break;
409 torben 319
410 torben 237 case NOPROVIDER:
411 torben 336 dismissDialog(DLG_PROGRESS);
412     MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
413 torben 237 break;
414 torben 336 case LOCATIONFIXTIMEOUT:
415 torben 237 if (isRunning) {
416 torben 482 locationLookup.stopSearch();
417     if (locationLookup.hasLocation()) {
418 torben 336 stationsFetched.sendEmptyMessage( GOTLOCATION );
419     } else {
420     dismissDialog(DLG_PROGRESS);
421    
422     AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);
423 torben 420 builder.setMessage("Location fix timed out");
424 torben 336 builder.setCancelable(true);
425     builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
426     public void onClick(DialogInterface dialog, int id) {
427     dialog.dismiss();
428     startLookup();
429    
430     }
431     });
432     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
433     public void onClick(DialogInterface dialog, int id) {
434     dialog.dismiss();
435     }
436     });
437     builder.show();
438    
439 torben 285 }
440 torben 237 }
441     break;
442     }
443     isRunning = false;
444     }
445     };
446 torben 381
447 torben 237
448 torben 440 class FindStationsTask extends AsyncTask<Void,Void,Void> {
449 torben 336
450 torben 381 LookupMethod method = LookupMethod.MethodNone;
451     boolean success;
452     String name;
453     Location loc;
454 torben 433 String ids;
455 torben 237
456 torben 381 public void searchByName(String n, Location l) {
457 torben 317
458 torben 381 method = LookupMethod.ByName;
459     loc = l;
460     name = n;
461 torben 317 }
462    
463 torben 381 public void searchByLocation(Location l) {
464     method = LookupMethod.ByLocation;
465     loc = l;
466     }
467    
468 torben 433 public void searchByIds(String id, Location l) {
469    
470     method = LookupMethod.ByList;
471     loc = l;
472     ids = id;
473     }
474    
475 torben 241 @Override
476     protected void onPreExecute() {
477 torben 258
478 torben 381 if (method.equals(LookupMethod.MethodNone))
479     throw new RuntimeException("Method not set");
480 torben 241 super.onPreExecute();
481     }
482    
483     @Override
484     protected Void doInBackground(Void... params) {
485 torben 473
486     switch (method) {
487     case ByLocation:
488 torben 381 success = stationProvider.lookupStations(loc);
489 torben 473 break;
490     case ByName:
491 torben 433 success = stationProvider.lookupStationsByName(name);
492 torben 473 break;
493     case ByList:
494 torben 433 success = stationProvider.lookupStationsByIds(ids);
495 torben 473 break;
496     default:
497     success = false; // not possible
498     }
499 torben 433
500 torben 473
501 torben 381 Location dummy = new Location("gps");
502 torben 319 List<StationBean> stations = stationProvider.getStations();
503 torben 381
504     for (StationBean station : stations) {
505 torben 493
506 torben 478 if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
507     if (loc != null) { //only do the distance calc if we have a location
508 torben 476 dummy.setLatitude(station.getLatitude());
509     dummy.setLongitude(station.getLongitude());
510     station.setDistance( (int)loc.distanceTo(dummy) );
511 torben 478 } else {
512     station.setDistance(0);
513 torben 476 }
514 torben 381 }
515 torben 478
516 torben 381 }
517 torben 317
518 torben 241 return null;
519     }
520    
521     @Override
522     protected void onPostExecute(Void result) {
523     super.onPostExecute(result);
524 torben 319 dialog.dismiss();
525    
526 torben 473
527 torben 319 if (success) {
528     if (stationProvider.getStations().size() == 0)
529 torben 336 MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
530 torben 319 stations = stationProvider.getStations();
531 torben 481 adapter.setStations( stations );
532 torben 319
533     } else { //communication or parse errors
534 torben 336 AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);
535     builder.setMessage("Error on finding nearby stations");
536     builder.setCancelable(true);
537     builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
538     public void onClick(DialogInterface dialog, int id) {
539     dialog.dismiss();
540    
541     stationsFetched.post( new Runnable() {
542     @Override
543     public void run() {
544     startLocatorTask();
545     }
546     });
547     }
548     });
549     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
550     public void onClick(DialogInterface dialog, int id) {
551     dialog.dismiss();
552     }
553     });
554     builder.show();
555 torben 319 }
556 torben 241 }
557     }
558 torben 433
559    
560     class FavoritesMenu implements OnCreateContextMenuListener {
561     private final static int FAVORITES_ADD = 9001;
562     private final static int FAVORITES_REMOVE = 9002;
563    
564     private int selectedPosition;
565    
566    
567     @Override
568     public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
569    
570     AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
571     selectedPosition = info.position;
572     int stationID = stations.get(selectedPosition).getId();
573    
574 torben 441 if (!favorites.contains(stationID)) {
575 torben 433 menu.add(0, FAVORITES_ADD, 0, "Add to favorites");
576     } else {
577     menu.add(0, FAVORITES_REMOVE, 0, "Remove from favorites");
578     }
579    
580     }
581    
582     public void onContextItemSelected(MenuItem item) {
583     StationBean sb = stations.get(selectedPosition);
584    
585     int stationID = sb.getId();
586     if (item.getItemId() == FAVORITES_ADD) {
587     favorites.add(stationID);
588     Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
589     } else {
590 torben 473
591 torben 433 favorites.remove(stationID);
592     Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
593 torben 473
594 torben 481
595     if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
596 torben 473 stations.remove(selectedPosition);
597     adapter.notifyDataSetChanged();
598     }
599 torben 433 }
600 torben 435 Editor ed = prefs.edit();
601     ed.putString("favorites", favorites.toString());
602     ed.commit();
603 torben 433 }
604     }
605 torben 237 }

  ViewVC Help
Powered by ViewVC 1.1.20