/[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 1066 by torben, Thu Sep 16 15:32:42 2010 UTC revision 1487 by torben, Sat May 28 17:47:01 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.content.SharedPreferences;
18  import android.graphics.Typeface;  import android.graphics.Typeface;
19  import android.net.Uri;  import android.net.Uri;
20  import android.os.AsyncTask;  import android.os.AsyncTask;
21  import android.os.Bundle;  import android.os.Bundle;
22    import android.preference.PreferenceManager;
23  import android.util.Log;  import android.util.Log;
24  import android.view.Menu;  import android.view.Menu;
25  import android.view.MenuItem;  import android.view.MenuItem;
# Line 27  import android.widget.ListView; Line 30  import android.widget.ListView;
30  import android.widget.TableLayout;  import android.widget.TableLayout;
31  import android.widget.TableRow;  import android.widget.TableRow;
32  import android.widget.TextView;  import android.widget.TextView;
33    import android.widget.Toast;
34  import dk.thoerup.android.traininfo.common.DepartureBean;  import dk.thoerup.android.traininfo.common.DepartureBean;
35  import dk.thoerup.android.traininfo.common.DepartureEntry;  import dk.thoerup.android.traininfo.common.DepartureEntry;
36  import dk.thoerup.android.traininfo.common.MetroBean;  import dk.thoerup.android.traininfo.common.MetroBean;
37  import dk.thoerup.android.traininfo.common.MetroBean.MetroEntry;  import dk.thoerup.android.traininfo.common.MetroBean.MetroEntry;
38  import dk.thoerup.android.traininfo.common.StationBean.StationEntry;  import dk.thoerup.android.traininfo.common.StationEntry;
39  import dk.thoerup.traininfo.provider.DepartureProvider;  import dk.thoerup.traininfo.provider.DepartureProvider;
40  import dk.thoerup.traininfo.provider.MetroProvider;  import dk.thoerup.traininfo.provider.MetroProvider;
41  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
# Line 42  public class DepartureList extends ListA Line 46  public class DepartureList extends ListA
46          public static final int DLG_PROGRESS = 1;          public static final int DLG_PROGRESS = 1;
47          static final int MENU_MAP = 100;          static final int MENU_MAP = 100;
48          static final int MENU_NOTIFICATIONS = 101;          static final int MENU_NOTIFICATIONS = 101;
49          static final int MENU_METROMAP= 102;          static final int MENU_METROMAP = 102;
50            static final int MENU_TOGGLEDETAILS= 103;
51                    
52                    
53          DepartureListAdapter adapter;          DepartureListAdapter adapter;
# Line 62  public class DepartureList extends ListA Line 67  public class DepartureList extends ListA
67    
68          StationEntry station;          StationEntry station;
69                    
70          boolean arrival = false;          String trainType = "REGIONAL";
71            
72            boolean arrival = false;        
73    
74          int commFailCounter = 0;          int commFailCounter = 0;
75    
# Line 73  public class DepartureList extends ListA Line 80  public class DepartureList extends ListA
80                                    
81                  adapter = new DepartureListAdapter(this);                  adapter = new DepartureListAdapter(this);
82                  setListAdapter(adapter);                  setListAdapter(adapter);
83                                                    
84                  Intent launchedBy = getIntent();                  Intent launchedBy = getIntent();
85                    
86                  station = (StationEntry) launchedBy.getSerializableExtra("stationbean");                  station = (StationEntry) launchedBy.getSerializableExtra("stationbean");
# Line 86  public class DepartureList extends ListA Line 93  public class DepartureList extends ListA
93                  final Button departureBtn = (Button) findViewById(R.id.departurebtn);                  final Button departureBtn = (Button) findViewById(R.id.departurebtn);
94                  final Button arrivalBtn = (Button) findViewById(R.id.arrivalbtn);                  final Button arrivalBtn = (Button) findViewById(R.id.arrivalbtn);
95                  final Button metroBtn = (Button) findViewById(R.id.metrobtn);                  final Button metroBtn = (Button) findViewById(R.id.metrobtn);
96                    final Button regionalBtn = (Button) findViewById(R.id.regionalbtn);
97                    final Button stogBtn = (Button) findViewById(R.id.stogbtn);
98                                    
99                  final View metroView = findViewById(R.id.metroonly);                  final View metroView = findViewById(R.id.metroonly);
100                                    
# Line 116  public class DepartureList extends ListA Line 125  public class DepartureList extends ListA
125                          }                          }
126                  });                  });
127                                    
128                    regionalBtn.setOnClickListener( new OnClickListener() {
129                            @Override
130                            public void onClick(View arg0) {        
131                                    regionalBtn.setBackgroundResource(R.drawable.custom_button_hilight);
132                                    stogBtn.setBackgroundResource(R.drawable.custom_button);                                
133                                    metroBtn.setBackgroundResource(R.drawable.custom_button);
134                                    
135                                    departureBtn.setVisibility( View.VISIBLE );
136                                    arrivalBtn.setVisibility( View.VISIBLE );
137                                    
138                                    getListView().setVisibility( View.VISIBLE );            
139                                    metroView.setVisibility( View.GONE );
140                                    trainType = "REGIONAL";
141                                    startDepartureFetcher();
142                            }
143                    });
144                    stogBtn.setOnClickListener( new OnClickListener() {
145                            @Override
146                            public void onClick(View arg0) {        
147                                    regionalBtn.setBackgroundResource(R.drawable.custom_button);
148                                    stogBtn.setBackgroundResource(R.drawable.custom_button_hilight);                                
149                                    metroBtn.setBackgroundResource(R.drawable.custom_button);
150    
151    
152                                    departureBtn.setVisibility( View.VISIBLE );
153                                    arrivalBtn.setVisibility( View.VISIBLE );
154                                    
155                                    getListView().setVisibility( View.VISIBLE );            
156                                    metroView.setVisibility( View.GONE );
157                                    trainType = "STOG";                    
158                                    startDepartureFetcher();
159                            }
160                    });
161    
162                    
163                    
164                  metroBtn.setOnClickListener( new OnClickListener() {                                      metroBtn.setOnClickListener( new OnClickListener() {                    
165                          @Override                          @Override
166                          public void onClick(View v) {                          public void onClick(View v) {
167                                  arrivalBtn.setBackgroundResource(R.drawable.custom_button);                                  regionalBtn.setBackgroundResource(R.drawable.custom_button);
168                                  departureBtn.setBackgroundResource(R.drawable.custom_button);                                  stogBtn.setBackgroundResource(R.drawable.custom_button);                                
169                                  metroBtn.setBackgroundResource(R.drawable.custom_button_hilight);                                  metroBtn.setBackgroundResource(R.drawable.custom_button_hilight);
170                                                                    
171                                    departureBtn.setVisibility( View.GONE );
172                                    arrivalBtn.setVisibility( View.GONE );
173                                    
174                                  getListView().setVisibility( View.GONE );                                                getListView().setVisibility( View.GONE );              
175                                  metroView.setVisibility( View.VISIBLE );                                  metroView.setVisibility( View.VISIBLE );
176                                  startMetroFetcher();                                  startMetroFetcher();
# Line 149  public class DepartureList extends ListA Line 197  public class DepartureList extends ListA
197                                    
198                  Log.e("Station", station.toCSV() );                  Log.e("Station", station.toCSV() );
199                                    
200                    
201                    
202                  if (station.isMetro() == false) {                  if (station.isMetro() == false) {
203                          metroBtn.setVisibility( View.GONE );                          metroBtn.setVisibility( View.GONE );
204                  }                  }
205                    
206                  metro = ProviderFactory.getMetroProvider();                  metro = ProviderFactory.getMetroProvider();
207                                    
208                    if (station.isRegional() == false ) {
209                            regionalBtn.setVisibility(View.GONE);
210                    }
211                    
212                    if (station.isStrain() == false ) {
213                            stogBtn.setVisibility(View.GONE);
214                    }
215                    
216                    if (station.isRegional() == true && station.isStrain() == false ) {
217                            if ( station.isMetro() == false )
218                                    regionalBtn.setVisibility(View.GONE);
219                            trainType = "REGIONAL";                
220                    }              
221    
222                    if (station.isRegional() == false  && station.isStrain() == true) {
223                            if (station.isMetro() == false)
224                                    stogBtn.setVisibility(View.GONE);
225    
226                            stogBtn.setBackgroundResource(R.drawable.custom_button_hilight);
227                            trainType = "STOG";
228                            
229                    }
230                    //Both enabled - use preferred from preferences
231                    if (station.isRegional() == true && station.isStrain() == true ) {
232                            SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
233                            trainType = prefs.getString("traintype", "REGIONAL"); //default value is gps    
234                            
235                            if (trainType.equals("STOG") ) {
236                                    stogBtn.setBackgroundResource(R.drawable.custom_button_hilight);
237                                    regionalBtn.setBackgroundResource(R.drawable.custom_button);
238                            }
239                    }
240                                    
241                    
242                  if (station.isRegional() == false && station.isStrain() == false) {                  if (station.isRegional() == false && station.isStrain() == false) {
243                          getListView().setVisibility( View.GONE );                                        getListView().setVisibility( View.GONE );              
244                          metroView.setVisibility( View.VISIBLE );                          metroView.setVisibility( View.VISIBLE );
245                                                    
246                          departureBtn.setVisibility( View.GONE );                          departureBtn.setVisibility( View.GONE );
247                          arrivalBtn.setVisibility(View.GONE);                          arrivalBtn.setVisibility(View.GONE);
248                          metroBtn.setVisibility( View.GONE );                          metroBtn.setVisibility( View.GONE );            
249                            
250                            
251                                                    
252                          if (savedInstanceState == null) {                          if (savedInstanceState == null) {
253                                  startMetroFetcher();                                  startMetroFetcher();
# Line 191  public class DepartureList extends ListA Line 277  public class DepartureList extends ListA
277                  }                  }
278          }          }
279                    
280            
281            
282          boolean hasNotifications() {          boolean hasNotifications() {
283                  return (departures != null && departures.notifications.size() > 0);                  return (departures != null && departures.notifications.size() > 0);
284          }          }
# Line 226  public class DepartureList extends ListA Line 314  public class DepartureList extends ListA
314          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
315                  super.onListItemClick(l, v, position, id);                  super.onListItemClick(l, v, position, id);
316                                    
317                    //how can this happen ??
318                    if (departures == null || departures.entries == null || departures.entries.size() == 0) {
319                            Toast.makeText(this, "No departures in list ?!?", Toast.LENGTH_LONG).show(); //TODO: translate
320                            return;
321                    }
322                    
323                  selectedItemId = position;                  selectedItemId = position;
324                                    
325                  DepartureEntry dep = departures.entries.get(selectedItemId);                  DepartureEntry dep = departures.entries.get(selectedItemId);
# Line 266  public class DepartureList extends ListA Line 360  public class DepartureList extends ListA
360                    
361                    
362    
363            @Override
364            public boolean onPrepareOptionsMenu(Menu menu) {                
365                    super.onPrepareOptionsMenu(menu);
366                    
367                    MenuItem item = menu.findItem( MENU_NOTIFICATIONS );
368                    boolean notifEnabled = hasNotifications();
369                    item.setEnabled(notifEnabled);
370                    
371                    return true;
372            }
373    
374          @Override          @Override
375          public boolean onCreateOptionsMenu(Menu menu) {          public boolean onCreateOptionsMenu(Menu menu) {
376                  MenuItem item;                  MenuItem item;
377                                    
378                    
379                    item = menu.add(0, MENU_TOGGLEDETAILS, 0, getString(R.string.departurelist_toggledetails));
380                    item.setIcon(android.R.drawable.ic_menu_view);
381                    
382                  item = menu.add(0, MENU_MAP, 0, getString(R.string.departurelist_showonmap) );                  item = menu.add(0, MENU_MAP, 0, getString(R.string.departurelist_showonmap) );
383                  item.setIcon(android.R.drawable.ic_menu_mapmode);                  item.setIcon(android.R.drawable.ic_menu_mapmode);
384                                    
# Line 284  public class DepartureList extends ListA Line 391  public class DepartureList extends ListA
391                  if (station.isMetro()) {                  if (station.isMetro()) {
392                          item = menu.add(0, MENU_METROMAP, 0, "Metro" ); //TODO:translate!?!                          item = menu.add(0, MENU_METROMAP, 0, "Metro" ); //TODO:translate!?!
393                          item.setIcon(android.R.drawable.ic_menu_mapmode);                                                item.setIcon(android.R.drawable.ic_menu_mapmode);                      
394                  }                  }                                              
                   
395    
396                  return true;                  return true;
397          }          }
398    
399          @Override          @Override
400          public boolean onOptionsItemSelected(MenuItem item) {                    public boolean onOptionsItemSelected(MenuItem item) {          
401                  boolean res;                  boolean res = true;
402                  switch(item.getItemId()) {                  switch(item.getItemId()) {
403                  case MENU_MAP:                  case MENU_MAP:
404                          Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());                          Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude() + "?z=16");
405                          startActivity( new Intent(Intent.ACTION_VIEW, uri));                          
406                          res = true;                          try {                          
407                                    startActivity( new Intent(Intent.ACTION_VIEW, uri));
408                            } catch (ActivityNotFoundException anfe) {
409                                     Toast.makeText(this, "Could not launch google maps", Toast.LENGTH_LONG).show();
410                            }
411                            
412                          break;                          break;
413                  case MENU_NOTIFICATIONS:                  case MENU_NOTIFICATIONS:
414                          Intent i = new Intent(this,dk.thoerup.traininfo.NotificationList.class);                          Intent i = new Intent(this,dk.thoerup.traininfo.NotificationList.class);
415                          i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);                          i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);
416                          startActivity(i);                          startActivity(i);                      
                         res = true;  
417                          break;                          break;
418                  case MENU_METROMAP:                  case MENU_METROMAP:
419                          Intent metroMap = new Intent(this,dk.thoerup.traininfo.MetroMap.class);                          Intent metroMap = new Intent(this,dk.thoerup.traininfo.MetroMap.class);
420                          startActivity(metroMap);                          startActivity(metroMap);                        
                         res = true;  
421                          break;                                            break;                  
422                    case MENU_TOGGLEDETAILS:
423                            adapter.toggleShowDetails();                                            
424                            break;
425                  default:                  default:
426                          res = super.onOptionsItemSelected(item);                          res = super.onOptionsItemSelected(item);
427                  }                  }
# Line 360  public class DepartureList extends ListA Line 472  public class DepartureList extends ListA
472                                                    
473                                                    
474                          pgDialog.dismiss();                          pgDialog.dismiss();
475                            
476                          if (departures != null) {                          if (departures != null && departures.errorCode == null) {
477                                  commFailCounter = 0;                                  commFailCounter = 0;
478                                  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
479                                  adapter.setDepartures(departures.entries);                                  adapter.setDepartures(departures.entries);
480                                  DepartureList.this.getListView().setVisibility(View.VISIBLE);                                  DepartureList.this.getListView().setVisibility(View.VISIBLE);
481                                                                    
482                                                                    
483                                  if ( hasNotifications() ) {                                  // handle notification icon.
484                                          findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);                                  View notifIcon = findViewById(R.id.notifIcon);
485                                    if ( hasNotifications() ) {                                    
486                                            notifIcon.setVisibility(View.VISIBLE);
487                                            notifIcon.setClickable(true);
488                                            notifIcon.setOnClickListener( new View.OnClickListener() {                                              
489                                                    @Override
490                                                    public void onClick(View v) {
491                                                            Intent i = new Intent(DepartureList.this, dk.thoerup.traininfo.NotificationList.class);
492                                                            i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);
493                                                            startActivity(i);                                                      
494                                                    }
495                                            });
496                                    } else {
497                                            notifIcon.setVisibility(View.INVISIBLE);
498                                  }                                  }
499                                                                    
500                                  if (departures.entries.size() == 0) {                                  if (departures.entries.size() == 0) {
501                                          MessageBox.showMessage(DepartureList.this, "No departures found", true);                                          int msgId = (arrival==false) ? R.string.departurelist_nodepartures : R.string.departurelist_noarrivals;
502                                            MessageBox.showMessage(DepartureList.this, getString(msgId), false);
503                                  }                                  }
504                          } else { // communication or parse error                          } else { // communication or parse error
505                                  commFailCounter++;                                  commFailCounter++;
506                                  AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);                                                                                AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);
507                                  builder.setMessage("Error finding departures");                                  
508                                    if (departures != null && departures.errorCode != null ) { //got an error xml back
509                                            commFailCounter = 10;
510                                            builder.setMessage( getString(R.string.no_backend) );
511                                    } else {                                        
512                                            builder.setMessage( getString(R.string.departurelist_fetcherror) );            
513                                    }
514                                  builder.setCancelable(true);                                  builder.setCancelable(true);
515                                    
516                                  if (commFailCounter < 3) {                                  if (commFailCounter < 3) {
517                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
518                                                  public void onClick(DialogInterface dialog, int id) {                                                  public void onClick(DialogInterface dialog, int id) {
# Line 396  public class DepartureList extends ListA Line 529  public class DepartureList extends ListA
529                                          }                                                                                                }                                                      
530                                  });                                  });
531                                                                    
532                                  try {                                  try { //TODO: is this still necessary after the 0.9.4.1 fix ?
533                                          builder.show();                                          builder.show();
534                                  } catch (android.view.WindowManager.BadTokenException e) {                                                                        } catch (android.view.WindowManager.BadTokenException e) {                                      
535                                          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 406  public class DepartureList extends ListA Line 539  public class DepartureList extends ListA
539    
540                  @Override                  @Override
541                  protected Void doInBackground(Integer... params) {                  protected Void doInBackground(Integer... params) {
542                          departures = provider.lookupDepartures(params[0], DepartureList.this.arrival);                          departures = provider.lookupDepartures(params[0], DepartureList.this.arrival, trainType);
543                          return null;                          return null;
544                  }                  }
545                                    
# Line 424  public class DepartureList extends ListA Line 557  public class DepartureList extends ListA
557                                    
558                  TextView h1 = new TextView(this);                  TextView h1 = new TextView(this);
559                  h1.setText("Metro");                  h1.setText("Metro");
560                    h1.setTextSize(16);
561                  h1.setTypeface( Typeface.defaultFromStyle(Typeface.BOLD));                  h1.setTypeface( Typeface.defaultFromStyle(Typeface.BOLD));
562                                    
563                                    
# Line 434  public class DepartureList extends ListA Line 568  public class DepartureList extends ListA
568                                    
569                                    
570                  TextView h2 = new TextView(this);                  TextView h2 = new TextView(this);
571                    h2.setTextSize(16);
572                  h2.setTypeface( Typeface.defaultFromStyle(Typeface.BOLD));                  h2.setTypeface( Typeface.defaultFromStyle(Typeface.BOLD));
573                  h2.setText("Om minutter");                  h2.setText("Om minutter");
574                                    
575                    params = new TableRow.LayoutParams();
576                    params.weight = 2;
577                  head.addView(h2,params);                  head.addView(h2,params);
578    
579                                    
# Line 449  public class DepartureList extends ListA Line 586  public class DepartureList extends ListA
586                          Log.e("Test", "" + entry.destination);                          Log.e("Test", "" + entry.destination);
587                                                    
588                          TextView v1 = new TextView(this);                          TextView v1 = new TextView(this);
589                          v1.setText( entry.metro );                          v1.setTextSize(16);
590                            v1.setText( entry.metro );                      
591                          row.addView(v1);                          row.addView(v1);
592                                                    
593                          TextView v2 = new TextView(this);                          TextView v2 = new TextView(this);
594                            v2.setTextSize(16);
595                          v2.setText( entry.destination );                          v2.setText( entry.destination );
596                          row.addView(v2);                          row.addView(v2);
597                                    
598                          TextView v3 = new TextView(this);                          TextView v3 = new TextView(this);
599                            v3.setTextSize(16);
600                          v3.setText( entry.minutes );                          v3.setText( entry.minutes );
601                          row.addView(v3);                          row.addView(v3);
602                                                    
# Line 495  public class DepartureList extends ListA Line 635  public class DepartureList extends ListA
635                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
636                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
637                                                  dialog.dismiss();                                                  dialog.dismiss();
638                                                  DepartureList.this.finish();                                                  DepartureList.this.finish(); //TODO: should we really close the activity ??
639                                          }                                                                                                }                                                      
640                                  });                                  });
641                                                                    
642                                  try {                                  try { //TODO: is this still necessary after the 0.9.4.1 fix ?
643                                          builder.show();                                          builder.show();
644                                  } catch (android.view.WindowManager.BadTokenException e) {                                                                        } catch (android.view.WindowManager.BadTokenException e) {                                      
645                                          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.1066  
changed lines
  Added in v.1487

  ViewVC Help
Powered by ViewVC 1.1.20