/[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 843 by torben, Sun Jun 13 13:45:37 2010 UTC revision 1027 by torben, Wed Sep 8 06:03:45 2010 UTC
# Line 7  import static dk.thoerup.traininfo.R.str Line 7  import static dk.thoerup.traininfo.R.str
7    
8    
9  import java.text.NumberFormat;  import java.text.NumberFormat;
10  import java.util.ArrayList;  
 import java.util.List;  
11    
12  import android.app.AlertDialog;  import android.app.AlertDialog;
13  import android.app.Dialog;  import android.app.Dialog;
# Line 20  import android.net.Uri; Line 19  import android.net.Uri;
19  import android.os.AsyncTask;  import android.os.AsyncTask;
20  import android.os.Bundle;  import android.os.Bundle;
21  import android.util.Log;  import android.util.Log;
22    import android.view.Menu;
23    import android.view.MenuItem;
24  import android.view.View;  import android.view.View;
25  import android.view.View.OnClickListener;  import android.view.View.OnClickListener;
26  import android.widget.Button;  import android.widget.Button;
# Line 32  import dk.thoerup.traininfo.util.Message Line 33  import dk.thoerup.traininfo.util.Message
33  public class DepartureList extends ListActivity {  public class DepartureList extends ListActivity {
34    
35          public static final int DLG_PROGRESS = 1;          public static final int DLG_PROGRESS = 1;
36            static final int MENU_MAP = 100;
37            static final int MENU_NOTIFICATIONS = 101;
38                    
39                    
40          DepartureListAdapter adapter;          DepartureListAdapter adapter;
41          DepartureProvider provider;          DepartureProvider provider;
42          List<DepartureBean> departures;          DepartureBean departures;
43                    
44          int selectedItemId;          int selectedItemId;
45          //DepartureBean currentDeparture;          //DepartureBean currentDeparture;
# Line 48  public class DepartureList extends ListA Line 51  public class DepartureList extends ListA
51          StationBean station;          StationBean station;
52                    
53          boolean arrival = false;          boolean arrival = false;
54            
55          @SuppressWarnings("unchecked")          int commFailCounter = 0;
56    
57          @Override          @Override
58          protected void onCreate(Bundle savedInstanceState) {          protected void onCreate(Bundle savedInstanceState) {
59                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
# Line 92  public class DepartureList extends ListA Line 96  public class DepartureList extends ListA
96                                    
97                                    
98                                    
99                  findViewById(R.id.header).setOnClickListener( mapLauncher );                  // findViewById(R.id.header).setOnClickListener( mapLauncher );
100                                    
101                  int distance = station.getDistance();                  int distance = station.getDistance();
102                  if (distance != 0) {                  if (distance != 0) {
# Line 118  public class DepartureList extends ListA Line 122  public class DepartureList extends ListA
122                          if (savedInstanceState == null) {                          if (savedInstanceState == null) {
123                                  startDepartureFetcher();                                  startDepartureFetcher();
124                          } else {                          } else {
125                                  departures = (List<DepartureBean>) savedInstanceState.getSerializable("departures");                                  departures = (DepartureBean) savedInstanceState.getSerializable("departures");
126                                  adapter.setDepartures(departures);                                  
127                                  selectedItemId = savedInstanceState.getInt("selectedItemId");                                    if ( (departures != null) && (departures.entries != null) ) {
128                                            adapter.setDepartures(departures.entries);
129                                    }
130                                    selectedItemId = savedInstanceState.getInt("selectedItemId");
131                                    
132                                    if ( hasNotifications() ) {
133                                            findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);
134                                    }
135                                    
136                          }                          }
137                  }                  }
138          }          }
139                    
140            @Override
141            protected void onStart() {
142                    super.onStart();
143                    ProviderFactory.purgeOldEntries();
144            }
145            
146            boolean hasNotifications() {
147                    return (departures != null && departures.notifications.size() > 0);
148            }
149            
150      @Override      @Override
151      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
152      {      {
# Line 133  public class DepartureList extends ListA Line 155  public class DepartureList extends ListA
155    
156          outState.putInt("selectedItemId", selectedItemId);          outState.putInt("selectedItemId", selectedItemId);
157                    
158          outState.putSerializable("departures", (ArrayList<DepartureBean>) departures);          outState.putSerializable("departures",  departures);
159      }      }
160        
161        
162                    
163          @Override          @Override
164            protected void onDestroy() {
165                    super.onDestroy();
166                    
167                    if (fetcher != null) {
168                            fetcher.cancel(true);
169                    }
170            }
171    
172            @Override
173          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
174                  super.onListItemClick(l, v, position, id);                  super.onListItemClick(l, v, position, id);
175                                    
176                  selectedItemId = position;                  selectedItemId = position;
177                                    
178                  DepartureBean dep = departures.get(selectedItemId);                  DepartureEntry dep = departures.entries.get(selectedItemId);
179                    
180                  Intent intent = new Intent(this, TimetableList.class);                  Intent intent = new Intent(this, TimetableList.class);
181                  intent.putExtra("departure", dep);                  intent.putExtra("departure", dep);
# Line 177  public class DepartureList extends ListA Line 210  public class DepartureList extends ListA
210                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
211                  }                  }
212          }          }
213            
214            
215    
216    
217    
218            @Override
219            public boolean onCreateOptionsMenu(Menu menu) {
220                    MenuItem item;
221                    
222                    item = menu.add(0, MENU_MAP, 0, getString(R.string.departurelist_showonmap) );
223                    item.setIcon(android.R.drawable.ic_menu_mapmode);
224                    
225                    item = menu.add(0, MENU_NOTIFICATIONS, 0, getString(R.string.departurelist_notifications) );
226                    item.setIcon(android.R.drawable.ic_menu_info_details);
227                    
228                    
229                    boolean notifEnabled = hasNotifications();
230                    item.setEnabled(notifEnabled);
231                    
232    
233                    return true;
234            }
235    
236            @Override
237            public boolean onOptionsItemSelected(MenuItem item) {          
238                    boolean res;
239                    switch(item.getItemId()) {
240                    case MENU_MAP:
241                            Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
242                            startActivity( new Intent(Intent.ACTION_VIEW, uri));
243                            res = true;
244                            break;
245                    case MENU_NOTIFICATIONS:
246                            Intent i = new Intent(this,dk.thoerup.traininfo.NotificationList.class);
247                            i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);
248                            startActivity(i);
249                            res = true;
250                            break;
251                    default:
252                            res = super.onOptionsItemSelected(item);
253                    }
254                    return res;
255            }
256    
257          void startDepartureFetcher() {          void startDepartureFetcher() {
258                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
# Line 198  public class DepartureList extends ListA Line 274  public class DepartureList extends ListA
274                  }                        }      
275          }          }
276                    
277          View.OnClickListener mapLauncher = new View.OnClickListener() {          /*View.OnClickListener mapLauncher = new View.OnClickListener() {
278                  @Override                  @Override
279                  public void onClick(View v) {                                    public void onClick(View v) {                  
280                          Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());                          Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
281                          startActivity( new Intent(Intent.ACTION_VIEW, uri));                          startActivity( new Intent(Intent.ACTION_VIEW, uri));
282                  }                  }
283          };          };*/
284    
285    
286                    
287          class DepartureFetcher extends AsyncTask<Integer, Void, Void> {          class DepartureFetcher extends AsyncTask<Integer, Void, Void> {
288    
                 boolean success;  
289    
290                  @Override                  @Override
291                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
# Line 219  public class DepartureList extends ListA Line 294  public class DepartureList extends ListA
294                                                    
295                          pgDialog.dismiss();                          pgDialog.dismiss();
296                                                    
297                          if (success) {                          if (departures != null) {
298                                  adapter.setDepartures(departures);                                  commFailCounter = 0;
299                                  if (departures.size() == 0) {                                  DepartureList.this.getListView().setVisibility(View.GONE); //Experimental, inspired by http://osdir.com/ml/Android-Developers/2010-04/msg01198.html
300                                          MessageBox.showMessage(DepartureList.this, "No departures found");                                  adapter.setDepartures(departures.entries);
301                                    DepartureList.this.getListView().setVisibility(View.VISIBLE);
302                                    
303                                    
304                                    if ( hasNotifications() ) {
305                                            findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);
306                                    }
307                                    
308                                    if (departures.entries.size() == 0) {
309                                            MessageBox.showMessage(DepartureList.this, "No departures found", true);
310                                  }                                  }
311                          } else { // communication or parse error                          } else { // communication or parse error
312                                    commFailCounter++;
313                                  AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);                                                                                AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);                                              
314                                  builder.setMessage("Error finding departures");                                  builder.setMessage("Error finding departures");
315                                  builder.setCancelable(true);                                  builder.setCancelable(true);
316                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                  if (commFailCounter < 3) {
317                                          public void onClick(DialogInterface dialog, int id) {                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
318                                                  dialog.dismiss();                                                  public void onClick(DialogInterface dialog, int id) {
319                                                  startDepartureFetcher();                                                          dialog.dismiss();
320                                                                                                            startDepartureFetcher();
321                                          }                                                          
322                                  });                                                  }
323                                            });
324                                    }
325                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
326                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
327                                                  dialog.dismiss();                                                  dialog.dismiss();
# Line 252  public class DepartureList extends ListA Line 339  public class DepartureList extends ListA
339    
340                  @Override                  @Override
341                  protected Void doInBackground(Integer... params) {                  protected Void doInBackground(Integer... params) {
342                          success = provider.lookupDepartures(params[0], DepartureList.this.arrival);                          departures = provider.lookupDepartures(params[0], DepartureList.this.arrival);
                         departures = provider.getDepartures(params[0], DepartureList.this.arrival);  
343                          return null;                          return null;
344                  }                  }
345                                    

Legend:
Removed from v.843  
changed lines
  Added in v.1027

  ViewVC Help
Powered by ViewVC 1.1.20