/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/DepartureList.java
ViewVC logotype

Diff of /android/TrainInfo/src/dk/thoerup/traininfo/DepartureList.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 316 by torben, Fri Sep 11 08:48:18 2009 UTC revision 1057 by torben, Tue Sep 14 17:05:21 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
3    import static dk.thoerup.traininfo.R.string.departurelist_fetcharrivals;
4    import static dk.thoerup.traininfo.R.string.departurelist_fetchdepartures;
5    import static dk.thoerup.traininfo.R.string.generic_cancel;
6    import static dk.thoerup.traininfo.R.string.generic_retry;
7    
8  import java.text.NumberFormat;  import java.text.NumberFormat;
 import java.util.ArrayList;  
 import java.util.List;  
 import java.util.Locale;  
9    
10    import android.app.AlertDialog;
11  import android.app.Dialog;  import android.app.Dialog;
12  import android.app.ListActivity;  import android.app.ListActivity;
13  import android.app.ProgressDialog;  import android.app.ProgressDialog;
14    import android.content.DialogInterface;
15  import android.content.Intent;  import android.content.Intent;
16  import android.location.Address;  import android.graphics.Typeface;
 import android.location.Geocoder;  
17  import android.net.Uri;  import android.net.Uri;
18  import android.os.AsyncTask;  import android.os.AsyncTask;
19  import android.os.Bundle;  import android.os.Bundle;
20  import android.util.Log;  import android.util.Log;
21    import android.view.Menu;
22    import android.view.MenuItem;
23  import android.view.View;  import android.view.View;
24    import android.view.View.OnClickListener;
25    import android.widget.Button;
26  import android.widget.ListView;  import android.widget.ListView;
27    import android.widget.TableLayout;
28    import android.widget.TableRow;
29  import android.widget.TextView;  import android.widget.TextView;
30  import dk.thoerup.traininfo.provider.DepartureProvider;  import dk.thoerup.traininfo.provider.DepartureProvider;
31    import dk.thoerup.traininfo.provider.MetroProvider;
32  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
33    import dk.thoerup.traininfo.provider.MetroProvider.MetroBean;
34    import dk.thoerup.traininfo.provider.MetroProvider.MetroEntry;
35  import dk.thoerup.traininfo.util.MessageBox;  import dk.thoerup.traininfo.util.MessageBox;
36    
37  public class DepartureList extends ListActivity {  public class DepartureList extends ListActivity {
38    
39          public static final int DLG_PROGRESS = 1;          public static final int DLG_PROGRESS = 1;
40          public static final int DLG_DETAILS = 2;          static final int MENU_MAP = 100;
41            static final int MENU_NOTIFICATIONS = 101;
42            static final int MENU_METROMAP= 102;
43            
44                    
45          DepartureListAdapter adapter;          DepartureListAdapter adapter;
46          DepartureProvider provider;          DepartureProvider provider;
47          List<DepartureBean> departures;          DepartureBean departures;
48            
49            MetroBean metroBean;
50            MetroProvider metro;
51                    
52          int selectedItemId;          int selectedItemId;
53          //DepartureBean currentDeparture;          //DepartureBean currentDeparture;
54                    
55          ProgressDialog pgDialog;          ProgressDialog pgDialog;
         Dialog detailsDialog;  
         DepartureFetcher fetcher;  
56                    
57          double latitude,longitude;          DepartureFetcher fetcher;
58            MetroFetcher metroFetcher;
59    
60            StationBean station;
61                    
62          @SuppressWarnings("unchecked")          boolean arrival = false;
63    
64            int commFailCounter = 0;
65    
66          @Override          @Override
67          protected void onCreate(Bundle savedInstanceState) {          protected void onCreate(Bundle savedInstanceState) {
68                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
# Line 50  public class DepartureList extends ListA Line 72  public class DepartureList extends ListA
72                  setListAdapter(adapter);                  setListAdapter(adapter);
73                                    
74                  Intent launchedBy = getIntent();                  Intent launchedBy = getIntent();
75            
76                    station = (StationBean) launchedBy.getSerializableExtra("stationbean");
77                                    
78                  latitude = launchedBy.getDoubleExtra("latitude", 0.0);                  ((TextView) findViewById(R.id.stationName)).setText( station.getName() );
79                  longitude = launchedBy.getDoubleExtra("longitude", 0.0);  
80    
81                    ((TextView) findViewById(R.id.stationAddr)).setText( station.getAddress() );
82                                    
83                  String name = launchedBy.getStringExtra("name");                  final Button departureBtn = (Button) findViewById(R.id.departurebtn);
84                  ((TextView) findViewById(R.id.stationName)).setText( name );                  final Button arrivalBtn = (Button) findViewById(R.id.arrivalbtn);
85                    final Button metroBtn = (Button) findViewById(R.id.metrobtn);
86                                    
87                  ((TextView) findViewById(R.id.stationAddr)).setText( "searching..." );                  final View metroView = findViewById(R.id.metroonly);
88                                    
89                  int stationId = launchedBy.getIntExtra("stationid", -1);                  departureBtn.setOnClickListener( new OnClickListener() {
90                            @Override
91                            public void onClick(View arg0) {        
92                                    arrivalBtn.setBackgroundResource(R.drawable.custom_button);
93                                    departureBtn.setBackgroundResource(R.drawable.custom_button_hilight);
94                                    metroBtn.setBackgroundResource(R.drawable.custom_button);
95                                    
96                                    getListView().setVisibility( View.VISIBLE );            
97                                    metroView.setVisibility( View.GONE );
98                                    arrival = false;
99                                    startDepartureFetcher();
100                            }
101                    });
102                    arrivalBtn.setOnClickListener( new OnClickListener() {
103                            @Override
104                            public void onClick(View arg0) {        
105                                    arrivalBtn.setBackgroundResource(R.drawable.custom_button_hilight);
106                                    departureBtn.setBackgroundResource(R.drawable.custom_button);
107                                    metroBtn.setBackgroundResource(R.drawable.custom_button);
108                                    
109                                    getListView().setVisibility( View.VISIBLE );            
110                                    metroView.setVisibility( View.GONE );
111                                    arrival = true;                
112                                    startDepartureFetcher();
113                            }
114                    });
115                                    
116                  findViewById(R.id.header).setOnClickListener( mapLauncher );                  metroBtn.setOnClickListener( new OnClickListener() {                    
117                            @Override
118                            public void onClick(View v) {
119                                    arrivalBtn.setBackgroundResource(R.drawable.custom_button);
120                                    departureBtn.setBackgroundResource(R.drawable.custom_button);
121                                    metroBtn.setBackgroundResource(R.drawable.custom_button_hilight);
122                                    
123                                    getListView().setVisibility( View.GONE );              
124                                    metroView.setVisibility( View.VISIBLE );
125                                    startMetroFetcher();
126                            }
127                    });
128                                    
129                  NumberFormat format = NumberFormat.getNumberInstance();                  
130                  format.setMaximumFractionDigits(1);                  
131                  format.setMinimumFractionDigits(1);                  
132                  int distance = launchedBy.getIntExtra("distance", 0);                  // findViewById(R.id.header).setOnClickListener( mapLauncher );
133                  ((TextView) findViewById(R.id.stationDistance)).setText( format.format((double)distance/1000.0) + " km." );                  
134                    int distance = station.getDistance();
135                    if (distance != 0) {
136                            NumberFormat format = NumberFormat.getNumberInstance();
137                            format.setMaximumFractionDigits(1);
138                            format.setMinimumFractionDigits(1);
139                    
140                            ((TextView) findViewById(R.id.stationDistance)).setText( format.format((double)distance/1000.0) + " km." );
141                    } else {
142                            ((TextView) findViewById(R.id.stationDistance)).setVisibility(View.GONE);
143                    }
144                    
145                    ProviderFactory.purgeOldEntries(); //cleanup before fetching more data
146                    
147                    Log.e("Station", station.toCSV() );
148                                    
149                  provider = ProviderFactory.getDepartureProvider();                  if (station.isMetro() == false) {
150                            metroBtn.setVisibility( View.GONE );
151                    }
152            
153                    metro = ProviderFactory.getMetroProvider();
154                                    
155                  fetcher = new DepartureFetcher();                  if (station.isRegional() == false && station.isSTrain() == false) {
156                  if (savedInstanceState == null) {                          getListView().setVisibility( View.GONE );              
157                          showDialog(DLG_PROGRESS);                          metroView.setVisibility( View.VISIBLE );
158                          fetcher.execute(stationId);                          
159                            departureBtn.setVisibility( View.GONE );
160                            arrivalBtn.setVisibility(View.GONE);
161                            metroBtn.setVisibility( View.GONE );
162                            
163                            if (savedInstanceState == null) {
164                                    startMetroFetcher();
165                            } else {
166                                    metroBean = (MetroBean) savedInstanceState.getSerializable("metro");
167                                    loadMetroData();
168                            }
169                            
170                  } else {                  } else {
171                          departures = (List<DepartureBean>) savedInstanceState.getSerializable("departures");                          provider = ProviderFactory.getDepartureProvider();
172                          adapter.setDepartures(departures);                          
173                          selectedItemId = savedInstanceState.getInt("selectedItemId");                            if (savedInstanceState == null) {
174                          boolean detailsShowing = savedInstanceState.getBoolean("detailsShowing");                                  startDepartureFetcher();
175                          if (detailsShowing)                          } else {
176                                  showDialog(DLG_DETAILS);                                  departures = (DepartureBean) savedInstanceState.getSerializable("departures");
177                                    
178                                    if ( (departures != null) && (departures.entries != null) ) {
179                                            adapter.setDepartures(departures.entries);
180                                    }
181                                    selectedItemId = savedInstanceState.getInt("selectedItemId");
182                                    
183                                    if ( hasNotifications() ) {
184                                            findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);
185                                    }
186                                    
187                            }
188                  }                  }
189          }          }
190                    
191            boolean hasNotifications() {
192                    return (departures != null && departures.notifications.size() > 0);
193            }
194            
195      @Override      @Override
196      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
197      {      {
198          if (pgDialog != null && pgDialog.isShowing())          if (pgDialog != null && pgDialog.isShowing())
199                  dismissDialog(DLG_PROGRESS);                  dismissDialog(DLG_PROGRESS);
200          boolean detailsShowing = (detailsDialog != null && detailsDialog.isShowing());  
         if (detailsShowing) {  
                 dismissDialog(DLG_DETAILS);  
         }  
         outState.putBoolean("detailsShowing", detailsShowing);  
201          outState.putInt("selectedItemId", selectedItemId);          outState.putInt("selectedItemId", selectedItemId);
202                    
203          outState.putSerializable("departures", (ArrayList<DepartureBean>) departures);          outState.putSerializable("departures",  departures);
204            outState.putSerializable("metro", metroBean);
205      }      }
206        
207        
208                    
209          @Override          @Override
210            protected void onDestroy() {
211                    super.onDestroy();
212                    
213                    if (fetcher != null) {
214                            fetcher.cancel(true);
215                    }
216                    
217                    if (metroFetcher != null) {
218                            metroFetcher.cancel(true);
219                    }
220            }
221    
222            @Override
223          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
224                  super.onListItemClick(l, v, position, id);                  super.onListItemClick(l, v, position, id);
225                    
226                    selectedItemId = position;
227                    
228                    DepartureEntry dep = departures.entries.get(selectedItemId);
229                    
230                  selectedItemId = position;                                Intent intent = new Intent(this, TimetableList.class);
231                  showDialog(DLG_DETAILS);                                  intent.putExtra("departure", dep);
232                    
233                    startActivity(intent);
234                                    
235          }          }
236                    
237    
# Line 115  public class DepartureList extends ListA Line 240  public class DepartureList extends ListA
240                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
241                                    
242                  switch (id) {                  switch (id) {
                 case DLG_DETAILS:  
                         DepartureBean currentDeparture = departures.get(selectedItemId);  
                         ((TextView)dialog.findViewById(R.id.Time)).setText(currentDeparture.getTime());  
                         ((TextView)dialog.findViewById(R.id.Train)).setText(currentDeparture.getTrainNumber());  
                         ((TextView)dialog.findViewById(R.id.Destination)).setText( currentDeparture.getDestination());  
                         ((TextView)dialog.findViewById(R.id.Origin)).setText(currentDeparture.getOrigin());  
                         ((TextView)dialog.findViewById(R.id.Location)).setText(currentDeparture.getLocation());  
                         ((TextView)dialog.findViewById(R.id.Updated)).setText(currentDeparture.getLastUpdateString());  
                         ((TextView)dialog.findViewById(R.id.Status)).setText(currentDeparture.getStatus());  
                         ((TextView)dialog.findViewById(R.id.Note)).setText(currentDeparture.getNote());  
                         detailsDialog = dialog;  
                         break;  
243                  case DLG_PROGRESS:                  case DLG_PROGRESS:
244                          pgDialog = (ProgressDialog) dialog;                          pgDialog = (ProgressDialog) dialog;
245                            int messageId = arrival == false ? departurelist_fetchdepartures : departurelist_fetcharrivals;
246                            pgDialog.setMessage( getString(messageId) );
247                          break;                          break;
248                  }                  }
249          }          }
# Line 137  public class DepartureList extends ListA Line 252  public class DepartureList extends ListA
252          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
253                  switch (id) {                  switch (id) {
254                  case DLG_PROGRESS:                  case DLG_PROGRESS:
255    
256                          ProgressDialog dlg = new ProgressDialog(this);                          ProgressDialog dlg = new ProgressDialog(this);
                         dlg.setMessage("Fetch departure data");  
257                          dlg.setCancelable(true);                          dlg.setCancelable(true);
258                          return dlg;                          return dlg;                    
                 case DLG_DETAILS:  
                         //Context mContext = getApplicationContext();  
                         Dialog dialog = new Dialog(this);  
                         dialog.setCancelable(true);  
   
                         dialog.setContentView(R.layout.departuredetails);  
                         dialog.setTitle("Departure details");  
   
                         View root = dialog.findViewById(R.id.layout_root);  
                         root.setOnClickListener( new DialogDismisser(dialog) );  
                         return dialog;                    
259                  default:                  default:
260                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
261                  }                  }
262          }          }
263            
264            
265    
266          String lookupAddress(double latitude, double longitude) {  
267    
268            @Override
269            public boolean onCreateOptionsMenu(Menu menu) {
270                    MenuItem item;
271                                    
272                  Geocoder coder = new Geocoder(this, new Locale("da"));                  item = menu.add(0, MENU_MAP, 0, getString(R.string.departurelist_showonmap) );
273                  StringBuilder sb = new StringBuilder();                  item.setIcon(android.R.drawable.ic_menu_mapmode);
274                  Log.i("lookupaddr", "" + latitude + "/" + longitude);                  
275                  try {                  item = menu.add(0, MENU_NOTIFICATIONS, 0, getString(R.string.departurelist_notifications) );
276                          List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);                  item.setIcon(android.R.drawable.ic_menu_info_details);                  
277                          Address addr = addressList.get(0);                  
278                                            boolean notifEnabled = hasNotifications();
279                                            item.setEnabled(notifEnabled);
280                          int max = addr.getMaxAddressLineIndex();                  
281                          for (int i=0; i<max; i++) {                  if (station.isMetro()) {
282                                  if (i>0)                          item = menu.add(0, MENU_METROMAP, 0, "Metro" ); //TODO:translate!?!
283                                          sb.append(", ");                          item.setIcon(android.R.drawable.ic_menu_mapmode);                      
                                   
                                 sb.append(addr.getAddressLine(i));  
                         }  
                           
                           
                 } catch (Exception e) {  
                         Log.e("DepartureList", "geocoder failed", e);  
284                  }                  }
285                                    
286                  return sb.toString();  
287                    return true;
288            }
289    
290            @Override
291            public boolean onOptionsItemSelected(MenuItem item) {          
292                    boolean res;
293                    switch(item.getItemId()) {
294                    case MENU_MAP:
295                            Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
296                            startActivity( new Intent(Intent.ACTION_VIEW, uri));
297                            res = true;
298                            break;
299                    case MENU_NOTIFICATIONS:
300                            Intent i = new Intent(this,dk.thoerup.traininfo.NotificationList.class);
301                            i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);
302                            startActivity(i);
303                            res = true;
304                            break;
305                    case MENU_METROMAP:
306                            Intent metroMap = new Intent(this,dk.thoerup.traininfo.MetroMap.class);
307                            startActivity(metroMap);
308                            res = true;
309                            break;                  
310                    default:
311                            res = super.onOptionsItemSelected(item);
312                    }
313                    return res;
314            }
315    
316            void startDepartureFetcher() {
317                    showDialog(DLG_PROGRESS);
318                    fetcher = new DepartureFetcher();
319                    fetcher.execute(station.getId());
320            }
321            
322            void startMetroFetcher() {
323                    showDialog(DLG_PROGRESS);
324                    metroFetcher = new MetroFetcher();
325                    metroFetcher.execute(station.getId());          
326          }          }
327                    
328          class DialogDismisser implements View.OnClickListener {          class DialogDismisser implements View.OnClickListener {
# Line 194  public class DepartureList extends ListA Line 336  public class DepartureList extends ListA
336                  public void onClick(View v) {                  public void onClick(View v) {
337                          if (dlg.isShowing())                          if (dlg.isShowing())
338                                  dlg.dismiss();                                  dlg.dismiss();
339                  }                  }      
340          }          }
341                    
342          View.OnClickListener mapLauncher = new View.OnClickListener() {          /*View.OnClickListener mapLauncher = new View.OnClickListener() {
343                  @Override                  @Override
344                  public void onClick(View v) {                  public void onClick(View v) {                  
345                          Uri uri = Uri.parse("geo:" + latitude + "," + longitude);                          Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
346                          startActivity( new Intent(Intent.ACTION_VIEW, uri));                          startActivity( new Intent(Intent.ACTION_VIEW, uri));
347                  }                  }
348          };          };*/
349            
350    
351                    
352          class DepartureFetcher extends AsyncTask<Integer, Void, Void> {          class DepartureFetcher extends AsyncTask<Integer, Void, Void> {
353    
                 String addr;  
354                  @Override                  @Override
355                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
356                          super.onPostExecute(result);                          super.onPostExecute(result);
357                                                    
358                          adapter.setDepartures(departures);                          
359                          pgDialog.dismiss();                          pgDialog.dismiss();
360                                                    
361                            if (departures != null) {
362                                    commFailCounter = 0;
363                                    DepartureList.this.getListView().setVisibility(View.GONE); //Experimental, inspired by http://osdir.com/ml/Android-Developers/2010-04/msg01198.html
364                                    adapter.setDepartures(departures.entries);
365                                    DepartureList.this.getListView().setVisibility(View.VISIBLE);
366                                    
367                                    
368                                    if ( hasNotifications() ) {
369                                            findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);
370                                    }
371                                    
372                                    if (departures.entries.size() == 0) {
373                                            MessageBox.showMessage(DepartureList.this, "No departures found", true);
374                                    }
375                            } else { // communication or parse error
376                                    commFailCounter++;
377                                    AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);                                              
378                                    builder.setMessage("Error finding departures");
379                                    builder.setCancelable(true);
380                                    if (commFailCounter < 3) {
381                                            builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
382                                                    public void onClick(DialogInterface dialog, int id) {
383                                                            dialog.dismiss();
384                                                            startDepartureFetcher();
385                                                            
386                                                    }
387                                            });
388                                    }
389                                    builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
390                                            public void onClick(DialogInterface dialog, int id) {
391                                                    dialog.dismiss();
392                                                    DepartureList.this.finish();
393                                            }                                                      
394                                    });
395                                    
396                                    try {
397                                            builder.show();
398                                    } catch (android.view.WindowManager.BadTokenException e) {                                      
399                                            Log.i("DepartureList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
400                                    }                              
401                            }
402                    }
403    
404                    @Override
405                    protected Void doInBackground(Integer... params) {
406                            departures = provider.lookupDepartures(params[0], DepartureList.this.arrival);
407                            return null;
408                    }
409                    
410            }
411            
412            public void loadMetroData() {
413                    ((TextView) findViewById(R.id.operations)).setText( metroBean.operationInfo );
414                    ((TextView) findViewById(R.id.plan)).setText( metroBean.plan );
415                    
416                    
417                    TableLayout table = (TableLayout) findViewById(R.id.metrotable);
418                    table.removeAllViews();
419                    
420                    TableRow head = new TableRow(this);
421                    
422                    TextView h1 = new TextView(this);
423                    h1.setText("Metro");
424                    h1.setTypeface( Typeface.defaultFromStyle(Typeface.BOLD));
425                    
426                    
427                    TableRow.LayoutParams params = new TableRow.LayoutParams();
428                    params.span = 2;
429                    head.addView(h1, params);
430                    
431                    
432                    
433                    TextView h2 = new TextView(this);
434                    h2.setTypeface( Typeface.defaultFromStyle(Typeface.BOLD));
435                    h2.setText("Om minutter");
436                    
437                    head.addView(h2,params);
438    
439                    
440                    
441                    table.addView(head);
442    
443                    for (MetroEntry entry : metroBean.entries) {
444                            TableRow row = new TableRow(this);
445                            
446                            Log.e("Test", "" + entry.destination);
447                            
448                            TextView v1 = new TextView(this);
449                            v1.setText( entry.metro );
450                            row.addView(v1);
451                            
452                            TextView v2 = new TextView(this);
453                            v2.setText( entry.destination );
454                            row.addView(v2);
455                    
456                            TextView v3 = new TextView(this);
457                            v3.setText( entry.minutes );
458                            row.addView(v3);
459                                                    
460                          ((TextView) findViewById(R.id.stationAddr)).setText( addr );                          table.addView(row);
461                                                    
462                          if (departures.size() == 0)                  }
463                                  MessageBox.showMessage(DepartureList.this, "No departures found");                  findViewById(R.id.rootView).requestLayout();
464            }
465            
466            class MetroFetcher extends AsyncTask<Integer, Void, Void> {
467                    
468                    @Override
469                    protected void onPostExecute(Void result) {
470                            super.onPostExecute(result);
471                            
472                            
473                            
474                            pgDialog.dismiss();
475                            
476                            if (metroBean != null) {
477                                    loadMetroData();
478                            } else { // communication or parse error
479                                    commFailCounter++;
480                                    AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);                                              
481                                    builder.setMessage("Error finding metro data");
482                                    builder.setCancelable(true);
483                                    if (commFailCounter < 3) {
484                                            builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
485                                                    public void onClick(DialogInterface dialog, int id) {
486                                                            dialog.dismiss();
487                                                            startMetroFetcher();
488                                                            
489                                                    }
490                                            });
491                                    }
492                                    builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
493                                            public void onClick(DialogInterface dialog, int id) {
494                                                    dialog.dismiss();
495                                                    DepartureList.this.finish();
496                                            }                                                      
497                                    });
498                                    
499                                    try {
500                                            builder.show();
501                                    } catch (android.view.WindowManager.BadTokenException e) {                                      
502                                            Log.i("DepartureList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
503                                    }                              
504                            }
505                  }                  }
506    
507                  @Override                  @Override
508                  protected Void doInBackground(Integer... params) {                  protected Void doInBackground(Integer... params) {                      
509                          addr = lookupAddress( latitude , longitude);                          metroBean = metro.lookupMetroInfo(params[0]);
                         provider.lookupDepartures(params[0]);  
                         departures = provider.getDepartures();  
510                          return null;                          return null;
511                  }                  }
512                                    
513          }          }
514    
515  }  }

Legend:
Removed from v.316  
changed lines
  Added in v.1057

  ViewVC Help
Powered by ViewVC 1.1.20