/[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 1006 by torben, Mon Aug 2 23:18:53 2010 UTC
# Line 19  import android.os.Bundle; Line 19  import android.os.Bundle;
19  import android.os.Handler;  import android.os.Handler;
20  import android.os.Message;  import android.os.Message;
21    
 import android.util.Log;  
22  import android.view.ContextMenu;  import android.view.ContextMenu;
23  import android.view.LayoutInflater;  import android.view.LayoutInflater;
24  import android.view.Menu;  import android.view.Menu;
# Line 48  public class StationList extends ListAct Line 47  public class StationList extends ListAct
47                    
48          public static final int OPTIONS_MAP = 2003;          public static final int OPTIONS_MAP = 2003;
49          public static final int OPTIONS_GPSINFO = 2004;          public static final int OPTIONS_GPSINFO = 2004;
   
           
   
50                    
51          public static final int DLG_PROGRESS = 3001;          public static final int DLG_PROGRESS = 3001;
52          public static final int DLG_STATIONNAME = 3002;          public static final int DLG_STATIONNAME = 3002;
53                    
54            
55            public static final int GPS_TIMEOUT_MS = 17500; //how long are we willing to wait for gps fix -in milliseconds
56            
57            
58          static enum LookupMethod {          static enum LookupMethod {
59                  ByLocation,                  ByLocation,
60                  ByName,                  ByName,
# Line 122  public class StationList extends ListAct Line 122  public class StationList extends ListAct
122                          case ListNearest:                          case ListNearest:
123                                  startLookup();                                  startLookup();
124                                  break;                                  break;
125                          case ListSearch:                          case ListSearch:                                
126                                  this.showDialogSafe(DLG_STATIONNAME);                                  showDialog(DLG_STATIONNAME); //TODO: this.showDialogSafe(DLG_STATIONNAME);
127                                  break;                                  break;
128                          case ListFavorites:                          case ListFavorites:
129                                  startFavoriteLookup();                                  startFavoriteLookup();
# Line 139  public class StationList extends ListAct Line 139  public class StationList extends ListAct
139                  }                  }
140                                    
141          }          }
142            
143    
144            @Override
145            protected void onDestroy() {
146                    super.onDestroy();
147                    
148                    if (findStationsTask != null) {
149                            findStationsTask.cancel(true);
150                    }
151                    if (locationLookup != null) {
152                            locationLookup.stopSearch();
153                    }
154                    isRunning = false;
155            }
156    
157            
158          protected void setTitle() {          protected void setTitle() {
159                  String dialogTitle = getResources().getString(app_name);                  String dialogTitle = getResources().getString(app_name);
160                  switch (listType) {                  switch (listType) {
# Line 165  public class StationList extends ListAct Line 181  public class StationList extends ListAct
181           * - 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?
182           * - java.lang.IllegalArgumentException: View not attached to window manager           * - java.lang.IllegalArgumentException: View not attached to window manager
183           */           */
184            
185            /*
186          public void showDialogSafe(int id) {          public void showDialogSafe(int id) {
187                  try {                  try {
188                          showDialog(id);                          showDialog(id);
# Line 196  public class StationList extends ListAct Line 213  public class StationList extends ListAct
213                          Log.e("StationList", "builder.show() failed", e);                          Log.e("StationList", "builder.show() failed", e);
214                  }                  }
215                                    
216          }          }*/
217            
218          /* EOF rude and ugly dialog hack */          /* EOF rude and ugly dialog hack */
219                    
220    
# Line 258  public class StationList extends ListAct Line 276  public class StationList extends ListAct
276                                  message.append( getString(stationlist_nolocation) );                                  message.append( getString(stationlist_nolocation) );
277                          }                                                }                      
278                                                    
279                          MessageBox.showMessage(this, message.toString());                          MessageBox.showMessage(this, message.toString(), false);
280                          break;                          break;
281                  default:                  default:
282                          retval = super.onOptionsItemSelected(item);                          retval = super.onOptionsItemSelected(item);
# Line 376  public class StationList extends ListAct Line 394  public class StationList extends ListAct
394          public void startLookup() {          public void startLookup() {
395                  isRunning = true;                                isRunning = true;              
396                  dialogMessage = getString( stationlist_waitforlocation );                  dialogMessage = getString( stationlist_waitforlocation );
397                  showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);
398                                    
399                  locationLookup.locateStations();                  locationLookup.locateStations();
400                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, GPS_TIMEOUT_MS);
401          }          }
402                    
403          void startNameSearch(String name) {          void startNameSearch(String name) {
404                  dialogMessage = getString( stationlist_findbyname );                  dialogMessage = getString( stationlist_findbyname );
405                  showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);
406    
407                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
408                  findStationsTask.searchByName(name);                  findStationsTask.searchByName(name);
# Line 396  public class StationList extends ListAct Line 414  public class StationList extends ListAct
414                                    
415                  if (favorites.size() > 0) {                  if (favorites.size() > 0) {
416                          dialogMessage = getString( stationlist_loadfavorites );                          dialogMessage = getString( stationlist_loadfavorites );
417                          showDialogSafe(DLG_PROGRESS);                          showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);
418    
419                          findStationsTask = new FindStationsTask();                          findStationsTask = new FindStationsTask();
420                          findStationsTask.searchByIds( favorites.toString() );                          findStationsTask.searchByIds( favorites.toString() );
# Line 411  public class StationList extends ListAct Line 429  public class StationList extends ListAct
429          void startLocatorTask()          void startLocatorTask()
430          {          {
431                  dialogMessage = getString( stationlist_findingnearby );                  dialogMessage = getString( stationlist_findingnearby );
432                  showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);
433                                    
434                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
435                  findStationsTask.searchByLocation( locationLookup.getLocation() );                  findStationsTask.searchByLocation( locationLookup.getLocation() );
# Line 428  public class StationList extends ListAct Line 446  public class StationList extends ListAct
446    
447                          switch (msg.what) {                          switch (msg.what) {
448                          case GOTLOCATION:                          case GOTLOCATION:
449                                  dismissDialogSafe(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);
450                                                                    
451                                  startLocatorTask();                                  startLocatorTask();
452                                  location = GeoPair.fromLocation( locationLookup.getLocation() );                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
# Line 436  public class StationList extends ListAct Line 454  public class StationList extends ListAct
454                                  break;                                  break;
455    
456                          case NOPROVIDER:                          case NOPROVIDER:
457                                  dismissDialogSafe(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);
458                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider) );                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider), true );
459                                    //StationList.this.finish();
460                                  break;                                  break;
461                          case LOCATIONFIXTIMEOUT:                                                          case LOCATIONFIXTIMEOUT:                                
462                                  if (isRunning) {                                  if (isRunning) {
# Line 445  public class StationList extends ListAct Line 464  public class StationList extends ListAct
464                                          if (locationLookup.hasLocation()) {                                          if (locationLookup.hasLocation()) {
465                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );
466                                          } else {                                                                                          } else {                                                
467                                                  dismissDialogSafe(DLG_PROGRESS);                                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);
468                                                                                                    
469                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
470                                                  builder.setMessage(  getString( stationlist_gpstimeout) );                                                  builder.setMessage(  getString( stationlist_gpstimeout) );
# Line 462  public class StationList extends ListAct Line 481  public class StationList extends ListAct
481                                                                  dialog.dismiss();                                                                  dialog.dismiss();
482                                                          }                                                                                                                }                                                      
483                                                  });                                                  });
484                                                  builderShowSafe(builder); // builder.show()                                                  builder.show();//TODO:builderShowSafe(builder);
485    
486                                          }                                          }
487                                  }                                  }
# Line 476  public class StationList extends ListAct Line 495  public class StationList extends ListAct
495          class FindStationsTask extends AsyncTask<Void,Void,Void> {          class FindStationsTask extends AsyncTask<Void,Void,Void> {
496                                    
497                  LookupMethod method = LookupMethod.MethodNone;                  LookupMethod method = LookupMethod.MethodNone;
                 boolean success;  
498                  String name;                  String name;
499                  Location loc;                  Location loc;
500                  String ids;                  String ids;
# Line 511  public class StationList extends ListAct Line 529  public class StationList extends ListAct
529    
530                          switch (method) {                          switch (method) {
531                          case ByLocation:                          case ByLocation:
532                                  success = stationProvider.lookupStations(loc);                                  stations = stationProvider.lookupStations(loc);
533                                  break;                                  break;
534                          case ByName:                          case ByName:
535                                  success = stationProvider.lookupStationsByName(name);                                  stations = stationProvider.lookupStationsByName(name);
536                                  break;                                  break;
537                          case ByList:                          case ByList:
538                                  success = stationProvider.lookupStationsByIds(ids);                                  stations = stationProvider.lookupStationsByIds(ids);
539                                  break;                                  break;
540                          default:                          default:
541                                  success = false; // not possible                                          stations = null; // not possible        
542                          }                          }
543                                                    
544                                                    
# Line 530  public class StationList extends ListAct Line 548  public class StationList extends ListAct
548                  @Override                  @Override
549                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
550                          super.onPostExecute(result);                          super.onPostExecute(result);
551                          dismissDialogSafe(dialog);                          dialog.dismiss();//TODO:dismissDialogSafe(dialog);
552                                                    
553                                                    
554                          if (success) {                                                    if (stations != null) {                        
555                                  if (stationProvider.getStations().size() == 0) {                                  if (stations.size() == 0) {
556                                          showMessageAndClose(getString(stationlist_nostations));                                          showMessageAndClose(getString(stationlist_nostations));
557                                  }                                  }
558                                  stations = stationProvider.getStations();  
559                                    StationList.this.getListView().invalidateViews();
560                                  adapter.setStations( stations );                                                                  adapter.setStations( stations );                                
561                                                                    
562                                    
563                          } else { //communication or parse errors                          } else { //communication or parse errors
564                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
565                                  builder.setMessage(getString(stationlist_nearbyerror));                                                          builder.setMessage(getString(stationlist_fetcherror));                          
566                                  builder.setCancelable(true);                                  builder.setCancelable(true);
567                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
568                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
# Line 586  public class StationList extends ListAct Line 606  public class StationList extends ListAct
606                                          }                                                                                                }                                                      
607                                  });                                  });
608                                                                    
609                                  builderShowSafe(builder); // builder.show()                                  builder.show();//TODO:builderShowSafe(builder);
610                          }                          }
611                  }                  }
612          }          }

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

  ViewVC Help
Powered by ViewVC 1.1.20