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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 481 by torben, Thu Oct 29 08:56:17 2009 UTC revision 493 by torben, Sun Nov 1 16:47:07 2009 UTC
# Line 2  package dk.thoerup.traininfo; Line 2  package dk.thoerup.traininfo;
2    
3  import java.util.ArrayList;  import java.util.ArrayList;
4  import java.util.List;  import java.util.List;
5  import java.util.Locale;  
6    
7  import android.app.AlertDialog;  import android.app.AlertDialog;
8  import android.app.Dialog;  import android.app.Dialog;
# Line 12  import android.content.DialogInterface; Line 12  import android.content.DialogInterface;
12  import android.content.Intent;  import android.content.Intent;
13  import android.content.SharedPreferences;  import android.content.SharedPreferences;
14  import android.content.SharedPreferences.Editor;  import android.content.SharedPreferences.Editor;
 import android.location.Address;  
 import android.location.Geocoder;  
15  import android.location.Location;  import android.location.Location;
16  import android.os.AsyncTask;  import android.os.AsyncTask;
17  import android.os.Bundle;  import android.os.Bundle;
18  import android.os.Handler;  import android.os.Handler;
19  import android.os.Message;  import android.os.Message;
20  import android.util.Log;  
21  import android.view.ContextMenu;  import android.view.ContextMenu;
22  import android.view.LayoutInflater;  import android.view.LayoutInflater;
23  import android.view.Menu;  import android.view.Menu;
# Line 63  public class StationList extends ListAct Line 61  public class StationList extends ListAct
61                    
62          String dialogMessage = "";          String dialogMessage = "";
63          ProgressDialog dialog;          ProgressDialog dialog;
64          LocationLookup locator = null;          LocationLookup locationLookup = null;
65          FindStationsTask findStationsTask;          FindStationsTask findStationsTask;
66          StationsFetchedHandler stationsFetched = new StationsFetchedHandler();          StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
67                    
# Line 80  public class StationList extends ListAct Line 78  public class StationList extends ListAct
78          IntSet favorites = new IntSet();          IntSet favorites = new IntSet();
79    
80          WelcomeScreen.ListType listType;          WelcomeScreen.ListType listType;
         String dialogTitle;  
81          SharedPreferences prefs;          SharedPreferences prefs;
82                    
83          ///////////////////////////////////////////////////////////////////////////////////////////          ///////////////////////////////////////////////////////////////////////////////////////////
# Line 99  public class StationList extends ListAct Line 96  public class StationList extends ListAct
96                  ListView lv = getListView();                  ListView lv = getListView();
97                  lv.setOnCreateContextMenuListener(contextMenu);                  lv.setOnCreateContextMenuListener(contextMenu);
98                                    
99                  locator = new LocationLookup(this, stationsFetched);                  locationLookup = new LocationLookup(this, stationsFetched);
100                                    
101    
102                  prefs = getSharedPreferences("TrainStation", 0);                  prefs = getSharedPreferences("TrainStation", 0);
# Line 108  public class StationList extends ListAct Line 105  public class StationList extends ListAct
105                          favorites.fromString(favoriteString);                          favorites.fromString(favoriteString);
106                  }                  }
107                                    
108                    listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");
109                    setTitle();
110                    
111                  if (savedInstanceState == null) {                  if (savedInstanceState == null) {
112                          listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");  
113                            
114                          switch (listType) {                          switch (listType) {
115                          case ListNearest:                          case ListNearest:
116                                  startLookup();                                  startLookup();
# Line 128  public class StationList extends ListAct Line 129  public class StationList extends ListAct
129                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
130                          adapter.setStations(stations);                          adapter.setStations(stations);
131                          location = (GeoPair) savedInstanceState.getSerializable("location");                          location = (GeoPair) savedInstanceState.getSerializable("location");
                         dialogTitle = savedInstanceState.getString("title");  
                         setTitle(dialogTitle);  
132                  }                  }
133                    
134            }
135            protected void setTitle() {
136                    String dialogTitle = getResources().getString(R.string.app_name);
137                    switch (listType) {
138                    case ListNearest:
139                            dialogTitle += " - Nearby stations";
140                            break;
141                    case ListSearch:
142                            dialogTitle += " - Search";
143                            break;
144                    case ListFavorites:
145                            dialogTitle += " - Favorites";
146                            break;
147                    default:
148                            dialogTitle = "";//not possible                                
149                    }
150            
151                    setTitle(dialogTitle);
152          }          }
153            
154            
155    
156    
157      @Override      @Override
# Line 141  public class StationList extends ListAct Line 161  public class StationList extends ListAct
161                  dialog.dismiss();                  dialog.dismiss();
162          outState.putSerializable("stations", (ArrayList<StationBean>) stations);          outState.putSerializable("stations", (ArrayList<StationBean>) stations);
163          outState.putSerializable("location", location);          outState.putSerializable("location", location);
164          outState.putString("title", dialogTitle);          
165      }      }
166                    
167                    
# Line 168  public class StationList extends ListAct Line 188  public class StationList extends ListAct
188                  case OPTIONS_MAP:                  case OPTIONS_MAP:
189                                                    
190                          Intent intent = new Intent(this,StationMapView.class);                          Intent intent = new Intent(this,StationMapView.class);
                         intent.putExtra("userlocation", location );  
191                                                    
192                          ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();                          ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
193                          for (StationBean st : stations ) {                          for (StationBean st : stations ) {
# Line 180  public class StationList extends ListAct Line 199  public class StationList extends ListAct
199                          startActivity(intent);                          startActivity(intent);
200                          break;                          break;
201                  case OPTIONS_GPSINFO:                  case OPTIONS_GPSINFO:
202                          Location loc = locator.getLocation();                          Location loc = locationLookup.getLocation();
203                          StringBuffer message = new StringBuffer();                          StringBuffer message = new StringBuffer();
204                          message.append("Location info:\n");                          message.append("Location info:\n");
205                          message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");                          message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");
# Line 294  public class StationList extends ListAct Line 313  public class StationList extends ListAct
313                  dialogMessage = "Wait for location fix";                  dialogMessage = "Wait for location fix";
314                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
315                                    
316                  locator.locateStations();                  locationLookup.locateStations();
317                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
318          }          }
319                    
# Line 303  public class StationList extends ListAct Line 322  public class StationList extends ListAct
322                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
323    
324                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
325                  findStationsTask.searchByName(name, locator.getLocation());                  findStationsTask.searchByName(name, locationLookup.getLocation());
326                  findStationsTask.execute();                  findStationsTask.execute();
327                                    
328          }          }
# Line 315  public class StationList extends ListAct Line 334  public class StationList extends ListAct
334                          showDialog(DLG_PROGRESS);                          showDialog(DLG_PROGRESS);
335    
336                          findStationsTask = new FindStationsTask();                          findStationsTask = new FindStationsTask();
337                          findStationsTask.searchByIds(favorites.toString(), locator.getLocation());                          findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
338                          findStationsTask.execute();                          findStationsTask.execute();
339                  } else {                  } else {
340                          MessageBox.showMessage(this, "Favorite list is empty");                          MessageBox.showMessage(this, "Favorite list is empty");
# Line 330  public class StationList extends ListAct Line 349  public class StationList extends ListAct
349                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
350                                    
351                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
352                  findStationsTask.searchByLocation( locator.getLocation() );                  findStationsTask.searchByLocation( locationLookup.getLocation() );
353                  findStationsTask.execute();                      findStationsTask.execute();    
354          }          }
355                    
356    
357            /* TODO: Remove this no longer needed function
358          String lookupAddress(double latitude, double longitude) {          String lookupAddress(double latitude, double longitude) {
359                                    
360                  Geocoder coder = new Geocoder(this, new Locale("da"));                  Geocoder coder = new Geocoder(this, new Locale("da"));
# Line 359  public class StationList extends ListAct Line 379  public class StationList extends ListAct
379                  }                  }
380                                    
381                  return sb.toString();                  return sb.toString();
382          }          }*/
383                    
384                    
385          ////////////////////////////////////////////////////////////////////////////          ////////////////////////////////////////////////////////////////////////////
# Line 374  public class StationList extends ListAct Line 394  public class StationList extends ListAct
394                                  dismissDialog(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);
395                                                                    
396                                  startLocatorTask();                                  startLocatorTask();
397                                  location = GeoPair.fromLocation( locator.getLocation() );                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
398                                                                    
399                                  break;                                  break;
400    
# Line 384  public class StationList extends ListAct Line 404  public class StationList extends ListAct
404                                  break;                                  break;
405                          case LOCATIONFIXTIMEOUT:                                                          case LOCATIONFIXTIMEOUT:                                
406                                  if (isRunning) {                                  if (isRunning) {
407                                          locator.stopSearch();                                          locationLookup.stopSearch();
408                                          if (locator.hasLocation()) {                                          if (locationLookup.hasLocation()) {
409                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );
410                                          } else {                                                                                          } else {                                                
411                                                  dismissDialog(DLG_PROGRESS);                                                  dismissDialog(DLG_PROGRESS);
# Line 473  public class StationList extends ListAct Line 493  public class StationList extends ListAct
493                          List<StationBean> stations = stationProvider.getStations();                          List<StationBean> stations = stationProvider.getStations();
494                                                    
495                          for (StationBean station : stations) {                          for (StationBean station : stations) {
496                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());                                                                  
                                 station.setAddress(addr);  
                                   
                                   
497                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
498                                          if (loc != null) { //only do the distance calc if we have a location                                          if (loc != null) { //only do the distance calc if we have a location
499                                                  dummy.setLatitude(station.getLatitude());                                                  dummy.setLatitude(station.getLatitude());
# Line 497  public class StationList extends ListAct Line 514  public class StationList extends ListAct
514                          super.onPostExecute(result);                          super.onPostExecute(result);
515                          dialog.dismiss();                          dialog.dismiss();
516                                                    
                         //set title  
                         switch (method) {  
                         case ByLocation:  
                                 dialogTitle = "Traininfo DK - Nearby stations";  
                                 break;  
                         case ByName:  
                                 dialogTitle = "Traininfo DK - Search";  
                                 break;  
                         case ByList:  
                                 dialogTitle = "Traininfo DK - Favorites";  
                                 break;  
                         default:  
                                 dialogTitle = "";//not possible                                  
                         }                                
                           
                         StationList.this.setTitle(dialogTitle);  
                         //set title end  
517                                                    
518                          if (success) {                                                    if (success) {                          
519                                  if (stationProvider.getStations().size() == 0)                                  if (stationProvider.getStations().size() == 0)

Legend:
Removed from v.481  
changed lines
  Added in v.493

  ViewVC Help
Powered by ViewVC 1.1.20