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

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

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

revision 917 by torben, Sat Jun 26 10:50:34 2010 UTC revision 1027 by torben, Wed Sep 8 06:03:45 2010 UTC
# Line 22  import android.util.Log; Line 22  import android.util.Log;
22  import android.view.View;  import android.view.View;
23  import android.widget.ListView;  import android.widget.ListView;
24  import android.widget.TextView;  import android.widget.TextView;
 import android.widget.Toast;  
25  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
26  import dk.thoerup.traininfo.provider.TimetableProvider;  import dk.thoerup.traininfo.provider.TimetableProvider;
27  import dk.thoerup.traininfo.util.MessageBox;  import dk.thoerup.traininfo.util.MessageBox;
# Line 30  import dk.thoerup.traininfo.util.Message Line 29  import dk.thoerup.traininfo.util.Message
29  public class TimetableList extends ListActivity {  public class TimetableList extends ListActivity {
30                    
31          private static final int DLG_PROGRESS = 8000;          private static final int DLG_PROGRESS = 8000;
32          DepartureBean departure;          DepartureEntry departure;
33          TimetableListAdapter adapter;          TimetableListAdapter adapter;
34          TimetableFetcher fetcher;          TimetableFetcher fetcher;
35          List<TimetableBean> timetables;          List<TimetableBean> timetables;
36            int commFailCounter = 0;
37                    
38          TimetableProvider provider;          TimetableProvider provider;
39    
# Line 51  public class TimetableList extends ListA Line 51  public class TimetableList extends ListA
51    
52                                    
53                  Intent launchedBy = getIntent();                  Intent launchedBy = getIntent();
54                  departure = (DepartureBean) launchedBy.getSerializableExtra("departure");                  departure = (DepartureEntry) launchedBy.getSerializableExtra("departure");
55                                    
56                  ((TextView)findViewById(R.id.Train)).setText(departure.getTrainNumber());                  ((TextView)findViewById(R.id.Train)).setText(departure.getTrainNumber());
57                  ((TextView)findViewById(R.id.Status)).setText(departure.getStatus());                  ((TextView)findViewById(R.id.Status)).setText(departure.getStatus());
# Line 68  public class TimetableList extends ListA Line 68  public class TimetableList extends ListA
68                  }                  }
69          }          }
70                    
71            @Override
72            protected void onStart() {
73                    super.onStart();
74                    ProviderFactory.purgeOldEntries();
75            }
76    
77            @Override
78            protected void onDestroy() {
79                    super.onDestroy();
80                    
81                    if (fetcher != null) {
82                            fetcher.cancel(true);
83                    }
84            }
85                    
86      @Override      @Override
87          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
# Line 128  public class TimetableList extends ListA Line 142  public class TimetableList extends ListA
142                    
143          class TimetableFetcher extends AsyncTask<String,Void,Void> {          class TimetableFetcher extends AsyncTask<String,Void,Void> {
144                                    
                 boolean success;  
145                                    
146                  @Override                  @Override
147                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
# Line 136  public class TimetableList extends ListA Line 149  public class TimetableList extends ListA
149                          dismissDialog(DLG_PROGRESS);                          dismissDialog(DLG_PROGRESS);
150                    
151                                                    
152                          if (success) {                          if (timetables != null) {
153                                    commFailCounter = 0;
154                                  TimetableList.this.getListView().invalidateViews();                                  TimetableList.this.getListView().invalidateViews();
155                                  adapter.setTimetable(timetables);                                  adapter.setTimetable(timetables);
156                                  if (timetables.size() == 0) {                                  if (timetables.size() == 0) {
157                                          MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);                                          MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);
158                                  }                                  }
159                          } else { // communication or parse error                          } else { // communication or parse error
160                                    commFailCounter++;
161                                  AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                                                                AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                              
162                                  builder.setMessage(getString(timetablelist_fetcherror));                                  builder.setMessage(getString(timetablelist_fetcherror));
163                                  builder.setCancelable(true);                                  builder.setCancelable(true);
164                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                  if (commFailCounter < 3) {
165                                          public void onClick(DialogInterface dialog, int id) {                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
166                                                  dialog.dismiss();                                                  public void onClick(DialogInterface dialog, int id) {
167                                                  startTimetableFetcher();                                                          dialog.dismiss();
168                                                                                                            startTimetableFetcher();
169                                          }                                                          
170                                  });                                                  }
171                                            });
172                                    }
173                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
174                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
175                                                  dialog.dismiss();                                                  dialog.dismiss();
# Line 174  public class TimetableList extends ListA Line 191  public class TimetableList extends ListA
191                  protected Void doInBackground(String... arg0) {                  protected Void doInBackground(String... arg0) {
192                          String type = arg0[0];                          String type = arg0[0];
193                          String trainID = arg0[1];                          String trainID = arg0[1];
194                          success = provider.lookupTimetable(type, trainID);                          timetables = provider.lookupTimetable(type, trainID);
                         timetables = provider.getTimetable(type, trainID);  
195                                                    
196                          return null;                          return null;
197                  }                  }

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

  ViewVC Help
Powered by ViewVC 1.1.20