/[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 476 by torben, Wed Oct 28 08:16:58 2009 UTC revision 483 by torben, Thu Oct 29 10:49:14 2009 UTC
# Line 44  public class StationList extends ListAct Line 44  public class StationList extends ListAct
44          public static final int NOPROVIDER = 1003;          public static final int NOPROVIDER = 1003;
45          public static final int LOCATIONFIXTIMEOUT = 1004;          public static final int LOCATIONFIXTIMEOUT = 1004;
46                    
         public static final int OPTIONS_RESCAN = 2001;  
         public static final int OPTIONS_NAMESEARCH = 2002;  
47          public static final int OPTIONS_MAP = 2003;          public static final int OPTIONS_MAP = 2003;
48          public static final int OPTIONS_ABOUT = 2004;          public static final int OPTIONS_GPSINFO = 2004;
49          public static final int OPTIONS_FAVORITES = 2005;  
50                    
51    
52                    
# Line 65  public class StationList extends ListAct Line 63  public class StationList extends ListAct
63                    
64          String dialogMessage = "";          String dialogMessage = "";
65          ProgressDialog dialog;          ProgressDialog dialog;
66          LocationLookup locator = null;          LocationLookup locationLookup = null;
67          FindStationsTask findStationsTask;          FindStationsTask findStationsTask;
68          StationsFetchedHandler stationsFetched = new StationsFetchedHandler();          StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
69                    
# Line 80  public class StationList extends ListAct Line 78  public class StationList extends ListAct
78                    
79          FavoritesMenu contextMenu = new FavoritesMenu();          FavoritesMenu contextMenu = new FavoritesMenu();
80          IntSet favorites = new IntSet();          IntSet favorites = new IntSet();
81            
82          boolean showingFavorites = false;          WelcomeScreen.ListType listType;
           
83          SharedPreferences prefs;          SharedPreferences prefs;
84                    
85          ///////////////////////////////////////////////////////////////////////////////////////////          ///////////////////////////////////////////////////////////////////////////////////////////
# Line 92  public class StationList extends ListAct Line 89  public class StationList extends ListAct
89          @Override          @Override
90          public void onCreate(Bundle savedInstanceState) {          public void onCreate(Bundle savedInstanceState) {
91                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
92                  setContentView(R.layout.main);                  setContentView(R.layout.stationlist);
93                                    
94                                    
95                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this);
# Line 101  public class StationList extends ListAct Line 98  public class StationList extends ListAct
98                  ListView lv = getListView();                  ListView lv = getListView();
99                  lv.setOnCreateContextMenuListener(contextMenu);                  lv.setOnCreateContextMenuListener(contextMenu);
100                                    
101                  locator = new LocationLookup(this, stationsFetched);                  locationLookup = new LocationLookup(this, stationsFetched);
102                                    
103    
104                  prefs = getSharedPreferences("TrainStation", 0);                  prefs = getSharedPreferences("TrainStation", 0);
# Line 110  public class StationList extends ListAct Line 107  public class StationList extends ListAct
107                          favorites.fromString(favoriteString);                          favorites.fromString(favoriteString);
108                  }                  }
109                                    
110                    listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");
111                    setTitle();
112                    
113                  if (savedInstanceState == null) {                  if (savedInstanceState == null) {
114                          startLookup();  
115                            
116                            switch (listType) {
117                            case ListNearest:
118                                    startLookup();
119                                    break;
120                            case ListSearch:
121                                    this.showDialog(DLG_STATIONNAME);
122                                    break;
123                            case ListFavorites:
124                                    startFavoriteLookup();
125                                    break;
126                            default:
127                                    // Not possible !?!
128                            }
129                            
130                  } else {                  } else {
131                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
132                          adapter.setStations(stations);                          adapter.setStations(stations);
133                          location = (GeoPair) savedInstanceState.getSerializable("location");                          location = (GeoPair) savedInstanceState.getSerializable("location");
134                  }                  }
135                    
136            }
137            protected void setTitle() {
138                    String dialogTitle;
139                    switch (listType) {
140                    case ListNearest:
141                            dialogTitle = "TrainInfo DK - Nearby stations";
142                            break;
143                    case ListSearch:
144                            dialogTitle = "TrainInfo DK - Search";
145                            break;
146                    case ListFavorites:
147                            dialogTitle = "TrainInfo DK - Favorites";
148                            break;
149                    default:
150                            dialogTitle = "";//not possible                                
151                    }
152            
153                    setTitle(dialogTitle);
154          }          }
155            
156            
157    
158    
159      @Override      @Override
# Line 127  public class StationList extends ListAct Line 163  public class StationList extends ListAct
163                  dialog.dismiss();                  dialog.dismiss();
164          outState.putSerializable("stations", (ArrayList<StationBean>) stations);          outState.putSerializable("stations", (ArrayList<StationBean>) stations);
165          outState.putSerializable("location", location);          outState.putSerializable("location", location);
166            
167      }      }
168                    
169                    
# Line 134  public class StationList extends ListAct Line 171  public class StationList extends ListAct
171          @Override          @Override
172          public boolean onCreateOptionsMenu(Menu menu) {          public boolean onCreateOptionsMenu(Menu menu) {
173                  MenuItem item;                  MenuItem item;
174                                                    
                 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);  
                   
175                  item = menu.add(0, OPTIONS_MAP, 0, "Station map");                  item = menu.add(0, OPTIONS_MAP, 0, "Station map");
176                  item.setIcon(android.R.drawable.ic_menu_mapmode);                  item.setIcon(android.R.drawable.ic_menu_mapmode);
177                                    
178                  item = menu.add(0, OPTIONS_ABOUT, 0, "About");                  item = menu.add(0, OPTIONS_GPSINFO, 0, "GPS Info");
179                  item.setIcon(android.R.drawable.ic_menu_info_details);                  item.setIcon(android.R.drawable.ic_menu_mapmode);              
180                    
181                  return true;                  return true;
182          }          }
183    
# Line 156  public class StationList extends ListAct Line 185  public class StationList extends ListAct
185          public boolean onOptionsItemSelected(MenuItem item) {          public boolean onOptionsItemSelected(MenuItem item) {
186                  boolean retval = true;                  boolean retval = true;
187    
188                                    //TODO: Cleanup
189                  switch (item.getItemId()) {                  switch (item.getItemId()) {
                 case OPTIONS_RESCAN:  
                         startLookup();  
                         break;  
                 case OPTIONS_NAMESEARCH:  
                         showDialog(DLG_STATIONNAME);  
                         break;  
                 case OPTIONS_FAVORITES:  
                         startFavoriteLookup();  
                         break;  
190                  case OPTIONS_MAP:                  case OPTIONS_MAP:
191                                                    
192                          Intent intent = new Intent(this,StationMapView.class);                          Intent intent = new Intent(this,StationMapView.class);
# Line 181  public class StationList extends ListAct Line 201  public class StationList extends ListAct
201                                                    
202                          startActivity(intent);                          startActivity(intent);
203                          break;                          break;
204                  case OPTIONS_ABOUT:                  case OPTIONS_GPSINFO:
205                          String ver = this.getResources().getString(R.string.app_version);                          Location loc = locationLookup.getLocation();
                           
                         Location loc = locator.getLocation();  
206                          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");  
207                          message.append("Location info:\n");                          message.append("Location info:\n");
208                          message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");                          message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");
209                          message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");                          message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");
# Line 301  public class StationList extends ListAct Line 316  public class StationList extends ListAct
316                  dialogMessage = "Wait for location fix";                  dialogMessage = "Wait for location fix";
317                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
318                                    
319                  locator.locateStations();                  locationLookup.locateStations();
320                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
321          }          }
322                    
# Line 310  public class StationList extends ListAct Line 325  public class StationList extends ListAct
325                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
326    
327                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
328                  findStationsTask.searchByName(name, locator.getLocation());                  findStationsTask.searchByName(name, locationLookup.getLocation());
329                  findStationsTask.execute();                  findStationsTask.execute();
330                                    
331          }          }
# Line 322  public class StationList extends ListAct Line 337  public class StationList extends ListAct
337                          showDialog(DLG_PROGRESS);                          showDialog(DLG_PROGRESS);
338    
339                          findStationsTask = new FindStationsTask();                          findStationsTask = new FindStationsTask();
340                          findStationsTask.searchByIds(favorites.toString(), locator.getLocation());                          findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
341                          findStationsTask.execute();                          findStationsTask.execute();
342                  } else {                  } else {
343                          MessageBox.showMessage(this, "Favorite list is empty");                          MessageBox.showMessage(this, "Favorite list is empty");
# Line 337  public class StationList extends ListAct Line 352  public class StationList extends ListAct
352                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
353                                    
354                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
355                  findStationsTask.searchByLocation( locator.getLocation() );                  findStationsTask.searchByLocation( locationLookup.getLocation() );
356                  findStationsTask.execute();                      findStationsTask.execute();    
357          }          }
358                    
# Line 381  public class StationList extends ListAct Line 396  public class StationList extends ListAct
396                                  dismissDialog(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);
397                                                                    
398                                  startLocatorTask();                                  startLocatorTask();
399                                  location = GeoPair.fromLocation( locator.getLocation() );                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
400                                                                    
401                                  break;                                  break;
402    
# Line 391  public class StationList extends ListAct Line 406  public class StationList extends ListAct
406                                  break;                                  break;
407                          case LOCATIONFIXTIMEOUT:                                                          case LOCATIONFIXTIMEOUT:                                
408                                  if (isRunning) {                                  if (isRunning) {
409                                          locator.stopSearch();                                          locationLookup.stopSearch();
410                                          if (locator.hasLocation()) {                                          if (locationLookup.hasLocation()) {
411                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );
412                                          } else {                                                                                          } else {                                                
413                                                  dismissDialog(DLG_PROGRESS);                                                  dismissDialog(DLG_PROGRESS);
# Line 483  public class StationList extends ListAct Line 498  public class StationList extends ListAct
498                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());
499                                  station.setAddress(addr);                                  station.setAddress(addr);
500                                                                    
501                                  if (loc != null) { //only do the distance calc if we have a location                                  
502                                          if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
503                                            if (loc != null) { //only do the distance calc if we have a location
504                                                  dummy.setLatitude(station.getLatitude());                                                  dummy.setLatitude(station.getLatitude());
505                                                  dummy.setLongitude(station.getLongitude());                                                  dummy.setLongitude(station.getLongitude());
506                                                  station.setDistance( (int)loc.distanceTo(dummy) );                                                  station.setDistance( (int)loc.distanceTo(dummy) );
507                                            } else {
508                                                    station.setDistance(0);
509                                          }                                          }
                                 } else {  
                                         station.setDistance(0);  
510                                  }                                  }
511    
512                          }                                                                        }                                              
513                                                    
514                          return null;                          return null;
# Line 502  public class StationList extends ListAct Line 519  public class StationList extends ListAct
519                          super.onPostExecute(result);                          super.onPostExecute(result);
520                          dialog.dismiss();                          dialog.dismiss();
521                                                    
                         //set title  
                         String title;  
                         switch (method) {  
                         case ByLocation:  
                                 title = "Traininfo DK - Nearby stations";  
                                 break;  
                         case ByName:  
                                 title = "Traininfo DK - Search";  
                                 break;  
                         case ByList:  
                                 title = "Traininfo DK - Favorites";  
                                 break;  
                         default:  
                                 title = "";//not possible                                        
                         }                                
                           
                         StationList.this.setTitle(title);  
                         //set title end  
522                                                    
523                          if (success) {                                                    if (success) {                          
524                                  if (stationProvider.getStations().size() == 0)                                  if (stationProvider.getStations().size() == 0)
525                                          MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!                                          MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
526                                  stations = stationProvider.getStations();                                  stations = stationProvider.getStations();
527                                  adapter.setStations( stations );                                  adapter.setStations( stations );                                
                                   
                                 showingFavorites = method.equals(LookupMethod.ByList);                            
528                                                                    
529                          } else { //communication or parse errors                          } else { //communication or parse errors
530                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
# Line 590  public class StationList extends ListAct Line 587  public class StationList extends ListAct
587                                  favorites.remove(stationID);                                  favorites.remove(stationID);
588                                  Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();                                  Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
589                                                                    
590                                  if (showingFavorites) {                                  
591                                    if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
592                                          stations.remove(selectedPosition);                                          stations.remove(selectedPosition);
593                                          adapter.notifyDataSetChanged();                                          adapter.notifyDataSetChanged();
594                                  }                                  }

Legend:
Removed from v.476  
changed lines
  Added in v.483

  ViewVC Help
Powered by ViewVC 1.1.20