/[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 489 by torben, Thu Oct 29 14:20:16 2009 UTC revision 554 by torben, Wed Jan 27 05:51:45 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 204  public class StationList extends ListAct Line 202  public class StationList extends ListAct
202                          Location loc = locationLookup.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");                          if (loc != null) {
206                          message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");                                  message.append("-Obtained by: ").append( loc.getProvider() ).append("\n");
207                                    message.append("-Accuracy: ").append( (int)loc.getAccuracy()).append("m\n");
208                                    message.append("-Latitude: ").append( loc.getLatitude()).append("\n");
209                                    message.append("-Longitude: ").append( loc.getLongitude() ).append("\n");
210                            } else {
211                                    message.append(" - No location data!");
212                            }
213                                    
214                          MessageBox.showMessage(this, message.toString());                          MessageBox.showMessage(this, message.toString());
215                          break;                          break;
216                  default:                  default:
# Line 304  public class StationList extends ListAct Line 308  public class StationList extends ListAct
308                  intent.putExtra("longitude", longitude);                  intent.putExtra("longitude", longitude);
309                  intent.putExtra("stationid", station.getId());                  intent.putExtra("stationid", station.getId());
310                  intent.putExtra("address", station.getAddress());                  intent.putExtra("address", station.getAddress());
311                    intent.putExtra("isregional", station.isRegional());
312                    intent.putExtra("isstrain", station.isSTrain());
313                    intent.putExtra("ismetro", station.isMetro());
314                  startActivity(intent);                  startActivity(intent);
315          }          }
316    
# Line 356  public class StationList extends ListAct Line 363  public class StationList extends ListAct
363          }          }
364                    
365    
366            /* TODO: Remove this no longer needed function
367          String lookupAddress(double latitude, double longitude) {          String lookupAddress(double latitude, double longitude) {
368                                    
369                  Geocoder coder = new Geocoder(this, new Locale("da"));                  Geocoder coder = new Geocoder(this, new Locale("da"));
# Line 380  public class StationList extends ListAct Line 388  public class StationList extends ListAct
388                  }                  }
389                                    
390                  return sb.toString();                  return sb.toString();
391          }          }*/
392                    
393                    
394          ////////////////////////////////////////////////////////////////////////////          ////////////////////////////////////////////////////////////////////////////
# Line 494  public class StationList extends ListAct Line 502  public class StationList extends ListAct
502                          List<StationBean> stations = stationProvider.getStations();                          List<StationBean> stations = stationProvider.getStations();
503                                                    
504                          for (StationBean station : stations) {                          for (StationBean station : stations) {
505                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());                                                                  
                                 station.setAddress(addr);  
                                   
                                   
506                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
507                                          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
508                                                  dummy.setLatitude(station.getLatitude());                                                  dummy.setLatitude(station.getLatitude());

Legend:
Removed from v.489  
changed lines
  Added in v.554

  ViewVC Help
Powered by ViewVC 1.1.20