/[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 441 by torben, Sun Oct 11 07:23:35 2009 UTC revision 552 by torben, Tue Jan 26 21:17:26 2010 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 44  public class StationList extends ListAct Line 42  public class StationList extends ListAct
42          public static final int NOPROVIDER = 1003;          public static final int NOPROVIDER = 1003;
43          public static final int LOCATIONFIXTIMEOUT = 1004;          public static final int LOCATIONFIXTIMEOUT = 1004;
44                    
         public static final int OPTIONS_RESCAN = 2001;  
         public static final int OPTIONS_NAMESEARCH = 2002;  
45          public static final int OPTIONS_MAP = 2003;          public static final int OPTIONS_MAP = 2003;
46          public static final int OPTIONS_ABOUT = 2004;          public static final int OPTIONS_GPSINFO = 2004;
47          public static final int OPTIONS_FAVORITES = 2005;  
48                    
49    
50                    
# Line 65  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 76  public class StationList extends ListAct
76                    
77          FavoritesMenu contextMenu = new FavoritesMenu();          FavoritesMenu contextMenu = new FavoritesMenu();
78          IntSet favorites = new IntSet();          IntSet favorites = new IntSet();
           
79    
80                    WelcomeScreen.ListType listType;
81          SharedPreferences prefs;          SharedPreferences prefs;
82                    
83          ///////////////////////////////////////////////////////////////////////////////////////////          ///////////////////////////////////////////////////////////////////////////////////////////
# Line 92  public class StationList extends ListAct Line 87  public class StationList extends ListAct
87          @Override          @Override
88          public void onCreate(Bundle savedInstanceState) {          public void onCreate(Bundle savedInstanceState) {
89                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
90                  setContentView(R.layout.main);                  setContentView(R.layout.stationlist);
91                                    
92                                    
93                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this);
# Line 101  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 110  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                          startLookup();  
113                            
114                            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                  } else {                  } else {
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");
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 127  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            
165      }      }
166                    
167                    
# Line 134  public class StationList extends ListAct Line 169  public class StationList extends ListAct
169          @Override          @Override
170          public boolean onCreateOptionsMenu(Menu menu) {          public boolean onCreateOptionsMenu(Menu menu) {
171                  MenuItem item;                  MenuItem item;
172                                                    
                 item = menu.add(0, OPTIONS_RESCAN, 0, "Nearest stations");  
                 item.setIcon(android.R.drawable.ic_menu_mylocation);  
                   
                 item = menu.add(0, OPTIONS_NAMESEARCH, 0, "Search for station");  
                 item.setIcon(android.R.drawable.ic_menu_search);  
                   
                 item = menu.add(0, OPTIONS_FAVORITES, 0, "Favorites");  
                 item.setIcon(android.R.drawable.ic_menu_agenda);  
                   
173                  item = menu.add(0, OPTIONS_MAP, 0, "Station map");                  item = menu.add(0, OPTIONS_MAP, 0, "Station map");
174                  item.setIcon(android.R.drawable.ic_menu_mapmode);                  item.setIcon(android.R.drawable.ic_menu_mapmode);
175                                    
176                  item = menu.add(0, OPTIONS_ABOUT, 0, "About");                  item = menu.add(0, OPTIONS_GPSINFO, 0, "GPS Info");
177                  item.setIcon(android.R.drawable.ic_menu_info_details);                  item.setIcon(android.R.drawable.ic_menu_mapmode);              
178                    
179                  return true;                  return true;
180          }          }
181    
# Line 156  public class StationList extends ListAct Line 183  public class StationList extends ListAct
183          public boolean onOptionsItemSelected(MenuItem item) {          public boolean onOptionsItemSelected(MenuItem item) {
184                  boolean retval = true;                  boolean retval = true;
185    
186                                    //TODO: Cleanup
187                  switch (item.getItemId()) {                  switch (item.getItemId()) {
                 case OPTIONS_RESCAN:  
                         startLookup();  
                         break;  
                 case OPTIONS_NAMESEARCH:  
                         showDialog(DLG_STATIONNAME);  
                         break;  
                 case OPTIONS_FAVORITES:  
                         startFavoriteLookup();  
                         break;  
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 181  public class StationList extends ListAct Line 198  public class StationList extends ListAct
198                                                    
199                          startActivity(intent);                          startActivity(intent);
200                          break;                          break;
201                  case OPTIONS_ABOUT:                  case OPTIONS_GPSINFO:
202                          String ver = this.getResources().getString(R.string.app_version);                          Location loc = locationLookup.getLocation();
                           
                         Location loc = locator.getLocation();  
203                          StringBuffer message = new StringBuffer();                          StringBuffer message = new StringBuffer();
                         message.append("TrainInfo DK v").append(ver).append("\n");  
                         message.append("By Torben Nielsen\n");  
                         message.append("\n");  
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");
206                          message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");                          message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");
207                            message.append("-Latitude: ").append(loc != null ? loc.getLatitude() : "-").append("\n");
208                            message.append("-Longitude: ").append(loc != null ? loc.getLongitude() : "-").append("\n");
209                          MessageBox.showMessage(this, message.toString());                          MessageBox.showMessage(this, message.toString());
210                          break;                          break;
211                  default:                  default:
# Line 290  public class StationList extends ListAct Line 303  public class StationList extends ListAct
303                  intent.putExtra("longitude", longitude);                  intent.putExtra("longitude", longitude);
304                  intent.putExtra("stationid", station.getId());                  intent.putExtra("stationid", station.getId());
305                  intent.putExtra("address", station.getAddress());                  intent.putExtra("address", station.getAddress());
306                    intent.putExtra("isregional", station.isRegional());
307                    intent.putExtra("isstrain", station.isSTrain());
308                    intent.putExtra("ismetro", station.isMetro());
309                  startActivity(intent);                  startActivity(intent);
310          }          }
311    
# Line 301  public class StationList extends ListAct Line 317  public class StationList extends ListAct
317                  dialogMessage = "Wait for location fix";                  dialogMessage = "Wait for location fix";
318                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
319                                    
320                  locator.locateStations();                  locationLookup.locateStations();
321                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
322          }          }
323                    
# Line 310  public class StationList extends ListAct Line 326  public class StationList extends ListAct
326                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
327    
328                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
329                  findStationsTask.searchByName(name, locator.getLocation());                  findStationsTask.searchByName(name, locationLookup.getLocation());
330                  findStationsTask.execute();                  findStationsTask.execute();
331                                    
332          }          }
# Line 322  public class StationList extends ListAct Line 338  public class StationList extends ListAct
338                          showDialog(DLG_PROGRESS);                          showDialog(DLG_PROGRESS);
339    
340                          findStationsTask = new FindStationsTask();                          findStationsTask = new FindStationsTask();
341                          findStationsTask.searchByIds(favorites.toString(), locator.getLocation());                          findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
342                          findStationsTask.execute();                          findStationsTask.execute();
343                  } else {                  } else {
344                          MessageBox.showMessage(this, "Favorite list is empty");                          MessageBox.showMessage(this, "Favorite list is empty");
# Line 337  public class StationList extends ListAct Line 353  public class StationList extends ListAct
353                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
354                                    
355                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
356                  findStationsTask.searchByLocation( locator.getLocation() );                  findStationsTask.searchByLocation( locationLookup.getLocation() );
357                  findStationsTask.execute();                      findStationsTask.execute();    
358          }          }
359                    
360    
361            /* TODO: Remove this no longer needed function
362          String lookupAddress(double latitude, double longitude) {          String lookupAddress(double latitude, double longitude) {
363                                    
364                  Geocoder coder = new Geocoder(this, new Locale("da"));                  Geocoder coder = new Geocoder(this, new Locale("da"));
# Line 366  public class StationList extends ListAct Line 383  public class StationList extends ListAct
383                  }                  }
384                                    
385                  return sb.toString();                  return sb.toString();
386          }          }*/
387                    
388                    
389          ////////////////////////////////////////////////////////////////////////////          ////////////////////////////////////////////////////////////////////////////
# Line 381  public class StationList extends ListAct Line 398  public class StationList extends ListAct
398                                  dismissDialog(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);
399                                                                    
400                                  startLocatorTask();                                  startLocatorTask();
401                                  location = GeoPair.fromLocation( locator.getLocation() );                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
402                                                                    
403                                  break;                                  break;
404    
# Line 391  public class StationList extends ListAct Line 408  public class StationList extends ListAct
408                                  break;                                  break;
409                          case LOCATIONFIXTIMEOUT:                                                          case LOCATIONFIXTIMEOUT:                                
410                                  if (isRunning) {                                  if (isRunning) {
411                                          locator.stopSearch();                                          locationLookup.stopSearch();
412                                          if (locator.hasLocation()) {                                          if (locationLookup.hasLocation()) {
413                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );
414                                          } else {                                                                                          } else {                                                
415                                                  dismissDialog(DLG_PROGRESS);                                                  dismissDialog(DLG_PROGRESS);
# Line 460  public class StationList extends ListAct Line 477  public class StationList extends ListAct
477                                    
478                  @Override                  @Override
479                  protected Void doInBackground(Void... params) {                  protected Void doInBackground(Void... params) {
480                    
481                          if (method.equals(LookupMethod.ByLocation))                          switch (method) {
482                            case ByLocation:
483                                  success = stationProvider.lookupStations(loc);                                  success = stationProvider.lookupStations(loc);
484                                                            break;
485                          if (method.equals(LookupMethod.ByName))                          case ByName:
486                                  success = stationProvider.lookupStationsByName(name);                                  success = stationProvider.lookupStationsByName(name);
487                                                            break;
488                          if (method.equals(LookupMethod.ByList))                          case ByList:
489                                  success = stationProvider.lookupStationsByIds(ids);                                  success = stationProvider.lookupStationsByIds(ids);
490                                    break;
491                            default:
492                                    success = false; // not possible        
493                            }
494                            
495                                                    
496                          Location dummy = new Location("gps");                          Location dummy = new Location("gps");
497                          List<StationBean> stations = stationProvider.getStations();                          List<StationBean> stations = stationProvider.getStations();
498                                                    
499                          for (StationBean station : stations) {                          for (StationBean station : stations) {
500                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());                                                                  
                                 station.setAddress(addr);  
                                   
501                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
502                                          dummy.setLatitude(station.getLatitude());                                          if (loc != null) { //only do the distance calc if we have a location
503                                          dummy.setLongitude(station.getLongitude());                                                  dummy.setLatitude(station.getLatitude());
504                                          station.setDistance( (int)loc.distanceTo(dummy) );                                                  dummy.setLongitude(station.getLongitude());
505                                                    station.setDistance( (int)loc.distanceTo(dummy) );
506                                            } else {
507                                                    station.setDistance(0);
508                                            }
509                                  }                                  }
510    
511                          }                                                                        }                                              
512                                                    
513                          return null;                          return null;
# Line 492  public class StationList extends ListAct Line 518  public class StationList extends ListAct
518                          super.onPostExecute(result);                          super.onPostExecute(result);
519                          dialog.dismiss();                          dialog.dismiss();
520                                                    
521                            
522                          if (success) {                                                    if (success) {                          
523                                  if (stationProvider.getStations().size() == 0)                                  if (stationProvider.getStations().size() == 0)
524                                          MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!                                          MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
# Line 555  public class StationList extends ListAct Line 582  public class StationList extends ListAct
582                                  favorites.add(stationID);                                  favorites.add(stationID);
583                                  Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();                                  Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
584                          } else {                          } else {
585                                    
586                                  favorites.remove(stationID);                                  favorites.remove(stationID);
587                                  Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();                                  Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
588                                    
589                                    
590                                    if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
591                                            stations.remove(selectedPosition);
592                                            adapter.notifyDataSetChanged();
593                                    }
594                          }                          }
595                          Editor ed = prefs.edit();                          Editor ed = prefs.edit();
596                          ed.putString("favorites", favorites.toString());                          ed.putString("favorites", favorites.toString());

Legend:
Removed from v.441  
changed lines
  Added in v.552

  ViewVC Help
Powered by ViewVC 1.1.20