/[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 1250 by torben, Thu Mar 31 18:20:42 2011 UTC revision 1441 by torben, Tue May 3 20:30:12 2011 UTC
# Line 11  import android.app.AlertDialog; Line 11  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.ActivityNotFoundException;
15  import android.content.DialogInterface;  import android.content.DialogInterface;
16  import android.content.Intent;  import android.content.Intent;
17  import android.graphics.Typeface;  import android.graphics.Typeface;
# Line 27  import android.widget.ListView; Line 28  import android.widget.ListView;
28  import android.widget.TableLayout;  import android.widget.TableLayout;
29  import android.widget.TableRow;  import android.widget.TableRow;
30  import android.widget.TextView;  import android.widget.TextView;
31    import android.widget.Toast;
32  import dk.thoerup.android.traininfo.common.DepartureBean;  import dk.thoerup.android.traininfo.common.DepartureBean;
33  import dk.thoerup.android.traininfo.common.DepartureEntry;  import dk.thoerup.android.traininfo.common.DepartureEntry;
34  import dk.thoerup.android.traininfo.common.MetroBean;  import dk.thoerup.android.traininfo.common.MetroBean;
35  import dk.thoerup.android.traininfo.common.MetroBean.MetroEntry;  import dk.thoerup.android.traininfo.common.MetroBean.MetroEntry;
36  import dk.thoerup.android.traininfo.common.StationBean.StationEntry;  import dk.thoerup.android.traininfo.common.StationEntry;
37  import dk.thoerup.traininfo.provider.DepartureProvider;  import dk.thoerup.traininfo.provider.DepartureProvider;
38  import dk.thoerup.traininfo.provider.MetroProvider;  import dk.thoerup.traininfo.provider.MetroProvider;
39  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
# Line 42  public class DepartureList extends ListA Line 44  public class DepartureList extends ListA
44          public static final int DLG_PROGRESS = 1;          public static final int DLG_PROGRESS = 1;
45          static final int MENU_MAP = 100;          static final int MENU_MAP = 100;
46          static final int MENU_NOTIFICATIONS = 101;          static final int MENU_NOTIFICATIONS = 101;
47          static final int MENU_METROMAP= 102;          static final int MENU_METROMAP = 102;
48            static final int MENU_TOGGLEDETAILS= 103;
49                    
50                    
51          DepartureListAdapter adapter;          DepartureListAdapter adapter;
# Line 64  public class DepartureList extends ListA Line 67  public class DepartureList extends ListA
67                    
68          String trainType = "REGIONAL";          String trainType = "REGIONAL";
69                    
70          boolean arrival = false;          boolean arrival = false;        
71    
72          int commFailCounter = 0;          int commFailCounter = 0;
73    
# Line 74  public class DepartureList extends ListA Line 77  public class DepartureList extends ListA
77                  setContentView(R.layout.departurelist);                  setContentView(R.layout.departurelist);
78                                    
79                  adapter = new DepartureListAdapter(this);                  adapter = new DepartureListAdapter(this);
80                  setListAdapter(adapter);                  setListAdapter(adapter);                                
81                                    
82                  Intent launchedBy = getIntent();                  Intent launchedBy = getIntent();
83                    
# Line 335  public class DepartureList extends ListA Line 338  public class DepartureList extends ListA
338                    
339                    
340    
   
   
341          @Override          @Override
342          public boolean onCreateOptionsMenu(Menu menu) {          public boolean onCreateOptionsMenu(Menu menu) {
343                  MenuItem item;                  MenuItem item;
344                                    
345                    
346                    item = menu.add(0, MENU_TOGGLEDETAILS, 0, getString(R.string.departurelist_toggledetails));
347                    item.setIcon(android.R.drawable.ic_menu_view);
348                    
349                  item = menu.add(0, MENU_MAP, 0, getString(R.string.departurelist_showonmap) );                  item = menu.add(0, MENU_MAP, 0, getString(R.string.departurelist_showonmap) );
350                  item.setIcon(android.R.drawable.ic_menu_mapmode);                  item.setIcon(android.R.drawable.ic_menu_mapmode);
351                                    
# Line 353  public class DepartureList extends ListA Line 358  public class DepartureList extends ListA
358                  if (station.isMetro()) {                  if (station.isMetro()) {
359                          item = menu.add(0, MENU_METROMAP, 0, "Metro" ); //TODO:translate!?!                          item = menu.add(0, MENU_METROMAP, 0, "Metro" ); //TODO:translate!?!
360                          item.setIcon(android.R.drawable.ic_menu_mapmode);                                                item.setIcon(android.R.drawable.ic_menu_mapmode);                      
361                  }                  }                                              
                   
362    
363                  return true;                  return true;
364          }          }
365    
366          @Override          @Override
367          public boolean onOptionsItemSelected(MenuItem item) {                    public boolean onOptionsItemSelected(MenuItem item) {          
368                  boolean res;                  boolean res = true;
369                  switch(item.getItemId()) {                  switch(item.getItemId()) {
370                  case MENU_MAP:                  case MENU_MAP:
371                          Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude() + "?z=16");                          Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude() + "?z=16");
372                          startActivity( new Intent(Intent.ACTION_VIEW, uri));                          
373                          res = true;                          try {                          
374                                    startActivity( new Intent(Intent.ACTION_VIEW, uri));
375                            } catch (ActivityNotFoundException anfe) {
376                                     Toast.makeText(this, "Could not launch google maps", Toast.LENGTH_LONG).show();
377                            }
378                            
379                          break;                          break;
380                  case MENU_NOTIFICATIONS:                  case MENU_NOTIFICATIONS:
381                          Intent i = new Intent(this,dk.thoerup.traininfo.NotificationList.class);                          Intent i = new Intent(this,dk.thoerup.traininfo.NotificationList.class);
382                          i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);                          i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);
383                          startActivity(i);                          startActivity(i);                      
                         res = true;  
384                          break;                          break;
385                  case MENU_METROMAP:                  case MENU_METROMAP:
386                          Intent metroMap = new Intent(this,dk.thoerup.traininfo.MetroMap.class);                          Intent metroMap = new Intent(this,dk.thoerup.traininfo.MetroMap.class);
387                          startActivity(metroMap);                          startActivity(metroMap);                        
                         res = true;  
388                          break;                                            break;                  
389                    case MENU_TOGGLEDETAILS:
390                            adapter.toggleShowDetails();                                            
391                            break;
392                  default:                  default:
393                          res = super.onOptionsItemSelected(item);                          res = super.onOptionsItemSelected(item);
394                  }                  }
# Line 429  public class DepartureList extends ListA Line 439  public class DepartureList extends ListA
439                                                    
440                                                    
441                          pgDialog.dismiss();                          pgDialog.dismiss();
442                            
443                          if (departures != null) {                          if (departures != null && departures.errorCode == null) {
444                                  commFailCounter = 0;                                  commFailCounter = 0;
445                                  DepartureList.this.getListView().setVisibility(View.GONE); //Experimental, inspired by http://osdir.com/ml/Android-Developers/2010-04/msg01198.html                                  DepartureList.this.getListView().setVisibility(View.GONE); //Experimental, inspired by http://osdir.com/ml/Android-Developers/2010-04/msg01198.html
446                                  adapter.setDepartures(departures.entries);                                  adapter.setDepartures(departures.entries);
447                                  DepartureList.this.getListView().setVisibility(View.VISIBLE);                                  DepartureList.this.getListView().setVisibility(View.VISIBLE);
448                                                                    
449                                                                    
450                                  if ( hasNotifications() ) {                                  // handle notification icon.
451                                          findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);                                  View notifIcon = findViewById(R.id.notifIcon);
452                                    if ( hasNotifications() ) {                                    
453                                            notifIcon.setVisibility(View.VISIBLE);
454                                            notifIcon.setClickable(true);
455                                            notifIcon.setOnClickListener( new View.OnClickListener() {                                              
456                                                    @Override
457                                                    public void onClick(View v) {
458                                                            Intent i = new Intent(DepartureList.this, dk.thoerup.traininfo.NotificationList.class);
459                                                            i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);
460                                                            startActivity(i);                                                      
461                                                    }
462                                            });
463                                    } else {
464                                            notifIcon.setVisibility(View.INVISIBLE);
465                                  }                                  }
466                                                                    
467                                  if (departures.entries.size() == 0) {                                  if (departures.entries.size() == 0) {
468                                          MessageBox.showMessage(DepartureList.this, "No departures found", true);                                          int msgId = (arrival==false) ? R.string.departurelist_nodepartures : R.string.departurelist_noarrivals;
469                                            MessageBox.showMessage(DepartureList.this, getString(msgId), false);
470                                  }                                  }
471                          } else { // communication or parse error                          } else { // communication or parse error
472                                  commFailCounter++;                                  commFailCounter++;
473                                  AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);                                                                                AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);
474                                  builder.setMessage("Error finding departures");                                  
475                                    if (departures != null && departures.errorCode != null ) { //got an error xml back
476                                            commFailCounter = 10;
477                                            builder.setMessage( getString(R.string.no_backend) );
478                                    } else {                                        
479                                            builder.setMessage( getString(R.string.departurelist_fetcherror) );            
480                                    }
481                                  builder.setCancelable(true);                                  builder.setCancelable(true);
482                                    
483                                  if (commFailCounter < 3) {                                  if (commFailCounter < 3) {
484                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
485                                                  public void onClick(DialogInterface dialog, int id) {                                                  public void onClick(DialogInterface dialog, int id) {
# Line 465  public class DepartureList extends ListA Line 496  public class DepartureList extends ListA
496                                          }                                                                                                }                                                      
497                                  });                                  });
498                                                                    
499                                  try {                                  try { //TODO: is this still necessary after the 0.9.4.1 fix ?
500                                          builder.show();                                          builder.show();
501                                  } catch (android.view.WindowManager.BadTokenException e) {                                                                        } 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                                          Log.i("DepartureList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
# Line 571  public class DepartureList extends ListA Line 602  public class DepartureList extends ListA
602                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
603                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
604                                                  dialog.dismiss();                                                  dialog.dismiss();
605                                                  DepartureList.this.finish();                                                  DepartureList.this.finish(); //TODO: should we really close the activity ??
606                                          }                                                                                                }                                                      
607                                  });                                  });
608                                                                    
609                                  try {                                  try { //TODO: is this still necessary after the 0.9.4.1 fix ?
610                                          builder.show();                                          builder.show();
611                                  } catch (android.view.WindowManager.BadTokenException e) {                                                                        } catch (android.view.WindowManager.BadTokenException e) {                                      
612                                          Log.i("DepartureList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running                                          Log.i("DepartureList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running

Legend:
Removed from v.1250  
changed lines
  Added in v.1441

  ViewVC Help
Powered by ViewVC 1.1.20