/[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 362 by torben, Tue Sep 29 21:30:16 2009 UTC revision 1027 by torben, Wed Sep 8 06:03:45 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
3    
4    import static dk.thoerup.traininfo.R.string.generic_cancel;
5    import static dk.thoerup.traininfo.R.string.generic_retry;
6    import static dk.thoerup.traininfo.R.string.timetablelist_fetchdata;
7    import static dk.thoerup.traininfo.R.string.timetablelist_fetcherror;
8    import static dk.thoerup.traininfo.R.string.timetablelist_nodata;
9    
10    import java.util.ArrayList;
11    import java.util.List;
12    
13    import android.app.AlertDialog;
14    import android.app.Dialog;
15  import android.app.ListActivity;  import android.app.ListActivity;
16    import android.app.ProgressDialog;
17    import android.content.DialogInterface;
18    import android.content.Intent;
19    import android.os.AsyncTask;
20  import android.os.Bundle;  import android.os.Bundle;
21    import android.util.Log;
22    import android.view.View;
23    import android.widget.ListView;
24  import android.widget.TextView;  import android.widget.TextView;
25    import dk.thoerup.traininfo.provider.ProviderFactory;
26    import dk.thoerup.traininfo.provider.TimetableProvider;
27    import dk.thoerup.traininfo.util.MessageBox;
28    
29  public class TimetableList extends ListActivity {  public class TimetableList extends ListActivity {
30            
31            private static final int DLG_PROGRESS = 8000;
32            DepartureEntry departure;
33            TimetableListAdapter adapter;
34            TimetableFetcher fetcher;
35            List<TimetableBean> timetables;
36            int commFailCounter = 0;
37            
38            TimetableProvider provider;
39    
40            @SuppressWarnings("unchecked")
41          @Override          @Override
42          protected void onCreate(Bundle savedInstanceState) {          protected void onCreate(Bundle savedInstanceState) {
43                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
44                  setContentView(R.layout.timetablelist);                  setContentView(R.layout.timetablelist);
45                    
46                    provider = ProviderFactory.getTimetableProvider();
47                    
48                    adapter = new TimetableListAdapter(this);              
49                    setListAdapter(adapter);
50    
51    
52                    
53                    Intent launchedBy = getIntent();
54                    departure = (DepartureEntry) launchedBy.getSerializableExtra("departure");
55                    
56                    ((TextView)findViewById(R.id.Train)).setText(departure.getTrainNumber());
57                    ((TextView)findViewById(R.id.Status)).setText(departure.getStatus());
58                    ((TextView)findViewById(R.id.Location)).setText(departure.getLocation());
59                    ((TextView)findViewById(R.id.Note)).setText(departure.getNote());
60                    ((TextView)findViewById(R.id.Updated)).setText(departure.getLastUpdateString(this));
61                                                    
62                    
63                    if (savedInstanceState == null) {
64                            startTimetableFetcher();
65                    } else {
66                            timetables = (List<TimetableBean>) savedInstanceState.getSerializable("timetables");
67                            adapter.setTimetable(timetables);
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   *              case DLG_DETAILS:      @Override
87                          DepartureBean currentDeparture = departures.get(selectedItemId);          protected void onListItemClick(ListView l, View v, int position, long id) {
88                          ((TextView)dialog.findViewById(R.id.Time)).setText(currentDeparture.getTime());                  super.onListItemClick(l, v, position, id);
89                          ((TextView)dialog.findViewById(R.id.Train)).setText(currentDeparture.getTrainNumber());  
90                          ((TextView)dialog.findViewById(R.id.Destination)).setText( currentDeparture.getDestination());                  TimetableBean tt = timetables.get(position);
91                          ((TextView)dialog.findViewById(R.id.Origin)).setText(currentDeparture.getOrigin());                  
92                          ((TextView)dialog.findViewById(R.id.Location)).setText(currentDeparture.getLocation());                  StationBean station = new StationBean();
93                          ((TextView)dialog.findViewById(R.id.Updated)).setText(currentDeparture.getLastUpdateString());                  station.setName( tt.getStation() );
94                          ((TextView)dialog.findViewById(R.id.Status)).setText(currentDeparture.getStatus());                  station.setId( tt.getStationId() );
95                          ((TextView)dialog.findViewById(R.id.Note)).setText(currentDeparture.getNote());                  station.setRegional(true);
96                          detailsDialog = dialog;                  
97                    Intent intent = new Intent(this, DepartureList.class);
98                    intent.putExtra("stationbean", station);
99                    startActivity(intent);
100                    
101            }
102        
103    
104    
105            @Override
106        public void onSaveInstanceState(Bundle outState)
107        {          
108            dismissDialog(DLG_PROGRESS);
109            outState.putSerializable("timetables", (ArrayList<TimetableBean>) timetables);
110        }
111    
112            
113            @Override
114            protected void onPrepareDialog(int id, Dialog dialog) {
115                    super.onPrepareDialog(id, dialog);
116                    
117                    switch (id) {
118                    case DLG_PROGRESS:
119                            //pgDialog = (ProgressDialog) dialog;
120                          break;                          break;
121                    }
122            }
123            
124            @Override
125            protected Dialog onCreateDialog(int id) {
126                    switch (id) {
127                    case DLG_PROGRESS:
128                            ProgressDialog dlg = new ProgressDialog(this);                  
129                            dlg.setMessage( getString(timetablelist_fetchdata) );
130                            dlg.setCancelable(true);
131                            return dlg;                    
132                    default:
133                            return super.onCreateDialog(id);                
134                    }
135            }
136    
137   */          void startTimetableFetcher() {
138                    showDialog(DLG_PROGRESS);
139                    fetcher = new TimetableFetcher();
140                    fetcher.execute(departure.getType(), departure.getTrainNumber());
141            }
142            
143            class TimetableFetcher extends AsyncTask<String,Void,Void> {
144                    
145                    
146                    @Override
147                    protected void onPostExecute(Void result) {
148                            super.onPostExecute(result);
149                            dismissDialog(DLG_PROGRESS);
150            
151                            
152                            if (timetables != null) {
153                                    commFailCounter = 0;
154                                    TimetableList.this.getListView().invalidateViews();
155                                    adapter.setTimetable(timetables);
156                                    if (timetables.size() == 0) {
157                                            MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);
158                                    }
159                            } else { // communication or parse error
160                                    commFailCounter++;
161                                    AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                              
162                                    builder.setMessage(getString(timetablelist_fetcherror));
163                                    builder.setCancelable(true);
164                                    if (commFailCounter < 3) {
165                                            builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
166                                                    public void onClick(DialogInterface dialog, int id) {
167                                                            dialog.dismiss();
168                                                            startTimetableFetcher();
169                                                            
170                                                    }
171                                            });
172                                    }
173                                    builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
174                                            public void onClick(DialogInterface dialog, int id) {
175                                                    dialog.dismiss();
176                                                    TimetableList.this.finish();
177                                            }                                                      
178                                    });
179                                    
180                                    try {
181                                            builder.show();
182                                    } catch (android.view.WindowManager.BadTokenException e) {                                      
183                                            Log.i("TimetableList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
184                                    }
185                                                                    
186                            }
187                            
188                    }
189                    
190                    @Override
191                    protected Void doInBackground(String... arg0) {
192                            String type = arg0[0];
193                            String trainID = arg0[1];
194                            timetables = provider.lookupTimetable(type, trainID);
195                            
196                            return null;
197                    }
198                    
199            }
200  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.20