/[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 552 by torben, Tue Jan 26 21:17:26 2010 UTC revision 555 by torben, Wed Jan 27 06:07:27 2010 UTC
# Line 202  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("-Latitude: ").append(loc != null ? loc.getLatitude() : "-").append("\n");                                  message.append("-Accuracy: ").append( (int)loc.getAccuracy()).append("m\n");
208                          message.append("-Longitude: ").append(loc != null ? loc.getLongitude() : "-").append("\n");                                  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 260  public class StationList extends ListAct Line 265  public class StationList extends ListAct
265                          builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {                          builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
266                                  public void onClick(DialogInterface dialog, int which) {                                  public void onClick(DialogInterface dialog, int which) {
267                                          dialog.dismiss();                                          dialog.dismiss();
268                                            StationList.this.finish(); // Close this Activity
269                                  }                                  }
270                          });                                              });                    
271                          return builder.create();                          return builder.create();

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

  ViewVC Help
Powered by ViewVC 1.1.20