/[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 843 by torben, Sun Jun 13 13:45:37 2010 UTC revision 983 by torben, Sun Jul 11 15:15:04 2010 UTC
# Line 48  public class StationList extends ListAct Line 48  public class StationList extends ListAct
48                    
49          public static final int OPTIONS_MAP = 2003;          public static final int OPTIONS_MAP = 2003;
50          public static final int OPTIONS_GPSINFO = 2004;          public static final int OPTIONS_GPSINFO = 2004;
   
           
   
51                    
52          public static final int DLG_PROGRESS = 3001;          public static final int DLG_PROGRESS = 3001;
53          public static final int DLG_STATIONNAME = 3002;          public static final int DLG_STATIONNAME = 3002;
54                    
55            
56            public static final int GPS_TIMEOUT_MS = 17500; //how long are we willing to wait for gps fix -in milliseconds
57            
58            
59          static enum LookupMethod {          static enum LookupMethod {
60                  ByLocation,                  ByLocation,
61                  ByName,                  ByName,
# Line 122  public class StationList extends ListAct Line 123  public class StationList extends ListAct
123                          case ListNearest:                          case ListNearest:
124                                  startLookup();                                  startLookup();
125                                  break;                                  break;
126                          case ListSearch:                          case ListSearch:                                
127                                  this.showDialogSafe(DLG_STATIONNAME);                                  showDialog(DLG_STATIONNAME); //TODO: this.showDialogSafe(DLG_STATIONNAME);
128                                  break;                                  break;
129                          case ListFavorites:                          case ListFavorites:
130                                  startFavoriteLookup();                                  startFavoriteLookup();
# Line 139  public class StationList extends ListAct Line 140  public class StationList extends ListAct
140                  }                  }
141                                    
142          }          }
143            
144    
145            @Override
146            protected void onDestroy() {
147                    super.onDestroy();
148                    
149                    if (findStationsTask != null) {
150                            findStationsTask.cancel(true);
151                    }
152                    if (locationLookup != null) {
153                            locationLookup.stopSearch();
154                    }
155                    isRunning = false;
156            }
157    
158            
159          protected void setTitle() {          protected void setTitle() {
160                  String dialogTitle = getResources().getString(app_name);                  String dialogTitle = getResources().getString(app_name);
161                  switch (listType) {                  switch (listType) {
# Line 165  public class StationList extends ListAct Line 182  public class StationList extends ListAct
182           * - android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@436aaef8 is not valid; is your activity running?           * - android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@436aaef8 is not valid; is your activity running?
183           * - java.lang.IllegalArgumentException: View not attached to window manager           * - java.lang.IllegalArgumentException: View not attached to window manager
184           */           */
185            
186            /*
187          public void showDialogSafe(int id) {          public void showDialogSafe(int id) {
188                  try {                  try {
189                          showDialog(id);                          showDialog(id);
# Line 196  public class StationList extends ListAct Line 214  public class StationList extends ListAct
214                          Log.e("StationList", "builder.show() failed", e);                          Log.e("StationList", "builder.show() failed", e);
215                  }                  }
216                                    
217          }          }*/
218            
219          /* EOF rude and ugly dialog hack */          /* EOF rude and ugly dialog hack */
220                    
221    
# Line 258  public class StationList extends ListAct Line 277  public class StationList extends ListAct
277                                  message.append( getString(stationlist_nolocation) );                                  message.append( getString(stationlist_nolocation) );
278                          }                                                }                      
279                                                    
280                          MessageBox.showMessage(this, message.toString());                          MessageBox.showMessage(this, message.toString(), false);
281                          break;                          break;
282                  default:                  default:
283                          retval = super.onOptionsItemSelected(item);                          retval = super.onOptionsItemSelected(item);
# Line 376  public class StationList extends ListAct Line 395  public class StationList extends ListAct
395          public void startLookup() {          public void startLookup() {
396                  isRunning = true;                                isRunning = true;              
397                  dialogMessage = getString( stationlist_waitforlocation );                  dialogMessage = getString( stationlist_waitforlocation );
398                  showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);
399                                    
400                  locationLookup.locateStations();                  locationLookup.locateStations();
401                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, GPS_TIMEOUT_MS);
402          }          }
403                    
404          void startNameSearch(String name) {          void startNameSearch(String name) {
405                  dialogMessage = getString( stationlist_findbyname );                  dialogMessage = getString( stationlist_findbyname );
406                  showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);
407    
408                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
409                  findStationsTask.searchByName(name);                  findStationsTask.searchByName(name);
# Line 396  public class StationList extends ListAct Line 415  public class StationList extends ListAct
415                                    
416                  if (favorites.size() > 0) {                  if (favorites.size() > 0) {
417                          dialogMessage = getString( stationlist_loadfavorites );                          dialogMessage = getString( stationlist_loadfavorites );
418                          showDialogSafe(DLG_PROGRESS);                          showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);
419    
420                          findStationsTask = new FindStationsTask();                          findStationsTask = new FindStationsTask();
421                          findStationsTask.searchByIds( favorites.toString() );                          findStationsTask.searchByIds( favorites.toString() );
# Line 411  public class StationList extends ListAct Line 430  public class StationList extends ListAct
430          void startLocatorTask()          void startLocatorTask()
431          {          {
432                  dialogMessage = getString( stationlist_findingnearby );                  dialogMessage = getString( stationlist_findingnearby );
433                  showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);
434                                    
435                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
436                  findStationsTask.searchByLocation( locationLookup.getLocation() );                  findStationsTask.searchByLocation( locationLookup.getLocation() );
# Line 428  public class StationList extends ListAct Line 447  public class StationList extends ListAct
447    
448                          switch (msg.what) {                          switch (msg.what) {
449                          case GOTLOCATION:                          case GOTLOCATION:
450                                  dismissDialogSafe(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);
451                                                                    
452                                  startLocatorTask();                                  startLocatorTask();
453                                  location = GeoPair.fromLocation( locationLookup.getLocation() );                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
# Line 436  public class StationList extends ListAct Line 455  public class StationList extends ListAct
455                                  break;                                  break;
456    
457                          case NOPROVIDER:                          case NOPROVIDER:
458                                  dismissDialogSafe(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);
459                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider) );                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider), true );
460                                    //StationList.this.finish();
461                                  break;                                  break;
462                          case LOCATIONFIXTIMEOUT:                                                          case LOCATIONFIXTIMEOUT:                                
463                                  if (isRunning) {                                  if (isRunning) {
# Line 445  public class StationList extends ListAct Line 465  public class StationList extends ListAct
465                                          if (locationLookup.hasLocation()) {                                          if (locationLookup.hasLocation()) {
466                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );
467                                          } else {                                                                                          } else {                                                
468                                                  dismissDialogSafe(DLG_PROGRESS);                                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);
469                                                                                                    
470                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
471                                                  builder.setMessage(  getString( stationlist_gpstimeout) );                                                  builder.setMessage(  getString( stationlist_gpstimeout) );
# Line 462  public class StationList extends ListAct Line 482  public class StationList extends ListAct
482                                                                  dialog.dismiss();                                                                  dialog.dismiss();
483                                                          }                                                                                                                }                                                      
484                                                  });                                                  });
485                                                  builderShowSafe(builder); // builder.show()                                                  builder.show();//TODO:builderShowSafe(builder);
486    
487                                          }                                          }
488                                  }                                  }
# Line 530  public class StationList extends ListAct Line 550  public class StationList extends ListAct
550                  @Override                  @Override
551                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
552                          super.onPostExecute(result);                          super.onPostExecute(result);
553                          dismissDialogSafe(dialog);                          dialog.dismiss();//TODO:dismissDialogSafe(dialog);
554                                                    
555                                                    
556                          if (success) {                                                    if (success) {                          
# Line 538  public class StationList extends ListAct Line 558  public class StationList extends ListAct
558                                          showMessageAndClose(getString(stationlist_nostations));                                          showMessageAndClose(getString(stationlist_nostations));
559                                  }                                  }
560                                  stations = stationProvider.getStations();                                  stations = stationProvider.getStations();
561    
562                                    StationList.this.getListView().invalidateViews();
563                                  adapter.setStations( stations );                                                                  adapter.setStations( stations );                                
564                                                                    
565                                    
566                          } else { //communication or parse errors                          } else { //communication or parse errors
567                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
568                                  builder.setMessage(getString(stationlist_nearbyerror));                                                          builder.setMessage(getString(stationlist_fetcherror));                          
569                                  builder.setCancelable(true);                                  builder.setCancelable(true);
570                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
571                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
# Line 586  public class StationList extends ListAct Line 609  public class StationList extends ListAct
609                                          }                                                                                                }                                                      
610                                  });                                  });
611                                                                    
612                                  builderShowSafe(builder); // builder.show()                                  builder.show();//TODO:builderShowSafe(builder);
613                          }                          }
614                  }                  }
615          }          }

Legend:
Removed from v.843  
changed lines
  Added in v.983

  ViewVC Help
Powered by ViewVC 1.1.20