/[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 555 by torben, Wed Jan 27 06:07:27 2010 UTC revision 556 by torben, Wed Jan 27 06:14:00 2010 UTC
# Line 209  public class StationList extends ListAct Line 209  public class StationList extends ListAct
209                                  message.append("-Longitude: ").append( loc.getLongitude() ).append("\n");                                  message.append("-Longitude: ").append( loc.getLongitude() ).append("\n");
210                          } else {                          } else {
211                                  message.append(" - No location data!");                                  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 229  public class StationList extends ListAct Line 229  public class StationList extends ListAct
229    
230    
231          }          }
232            
233            public void showMessageAndClose(String message) {
234                    AlertDialog.Builder builder = new AlertDialog.Builder(this);
235                    builder.setMessage(message)
236                    .setCancelable(false)
237                    .setPositiveButton("OK", new DialogInterface.OnClickListener() {
238                            public void onClick(DialogInterface dialog, int id) {
239                                    dialog.dismiss();
240                                    StationList.this.finish();
241                            }
242                    })
243                    .show();
244            }
245    
246    
247    
# Line 258  public class StationList extends ListAct Line 271  public class StationList extends ListAct
271                                          if (et.getText().toString().length() >= 2) {                                          if (et.getText().toString().length() >= 2) {
272                                                  startNameSearch(et.getText().toString());                                                  startNameSearch(et.getText().toString());
273                                          } else {                                          } else {
274                                                  MessageBox.showMessage(StationList.this, "Two characters minimum" );                                                  showMessageAndClose("Two characters minimum");
275                                          }                                          }
276                                  }                                  }
277                          });                          });
# Line 347  public class StationList extends ListAct Line 360  public class StationList extends ListAct
360                          findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());                          findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
361                          findStationsTask.execute();                          findStationsTask.execute();
362                  } else {                  } else {
363                          MessageBox.showMessage(this, "Favorite list is empty");                          showMessageAndClose( "Favorite list is empty");
364                  }                  }
365          }          }
366    

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

  ViewVC Help
Powered by ViewVC 1.1.20