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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1028 - (show annotations) (download)
Wed Sep 8 06:25:13 2010 UTC (13 years, 8 months ago) by torben
File size: 5515 byte(s)
Do the cleanup in onCreate before starting any background job - so the cleanup and background work doesn't collide
1 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;
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;
21 import android.util.Log;
22 import android.view.View;
23 import android.widget.ListView;
24 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 {
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
42 protected void onCreate(Bundle savedInstanceState) {
43 super.onCreate(savedInstanceState);
44 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 ProviderFactory.purgeOldEntries(); //cleanup before fetching more data
63
64 if (savedInstanceState == null) {
65 startTimetableFetcher();
66 } else {
67 timetables = (List<TimetableBean>) savedInstanceState.getSerializable("timetables");
68 adapter.setTimetable(timetables);
69 }
70 }
71
72 @Override
73 protected void onDestroy() {
74 super.onDestroy();
75
76 if (fetcher != null) {
77 fetcher.cancel(true);
78 }
79 }
80
81 @Override
82 protected void onListItemClick(ListView l, View v, int position, long id) {
83 super.onListItemClick(l, v, position, id);
84
85 TimetableBean tt = timetables.get(position);
86
87 StationBean station = new StationBean();
88 station.setName( tt.getStation() );
89 station.setId( tt.getStationId() );
90 station.setRegional(true);
91
92 Intent intent = new Intent(this, DepartureList.class);
93 intent.putExtra("stationbean", station);
94 startActivity(intent);
95
96 }
97
98
99
100 @Override
101 public void onSaveInstanceState(Bundle outState)
102 {
103 dismissDialog(DLG_PROGRESS);
104 outState.putSerializable("timetables", (ArrayList<TimetableBean>) timetables);
105 }
106
107
108 @Override
109 protected void onPrepareDialog(int id, Dialog dialog) {
110 super.onPrepareDialog(id, dialog);
111
112 switch (id) {
113 case DLG_PROGRESS:
114 //pgDialog = (ProgressDialog) dialog;
115 break;
116 }
117 }
118
119 @Override
120 protected Dialog onCreateDialog(int id) {
121 switch (id) {
122 case DLG_PROGRESS:
123 ProgressDialog dlg = new ProgressDialog(this);
124 dlg.setMessage( getString(timetablelist_fetchdata) );
125 dlg.setCancelable(true);
126 return dlg;
127 default:
128 return super.onCreateDialog(id);
129 }
130 }
131
132 void startTimetableFetcher() {
133 showDialog(DLG_PROGRESS);
134 fetcher = new TimetableFetcher();
135 fetcher.execute(departure.getType(), departure.getTrainNumber());
136 }
137
138 class TimetableFetcher extends AsyncTask<String,Void,Void> {
139
140
141 @Override
142 protected void onPostExecute(Void result) {
143 super.onPostExecute(result);
144 dismissDialog(DLG_PROGRESS);
145
146
147 if (timetables != null) {
148 commFailCounter = 0;
149 TimetableList.this.getListView().invalidateViews();
150 adapter.setTimetable(timetables);
151 if (timetables.size() == 0) {
152 MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);
153 }
154 } else { // communication or parse error
155 commFailCounter++;
156 AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);
157 builder.setMessage(getString(timetablelist_fetcherror));
158 builder.setCancelable(true);
159 if (commFailCounter < 3) {
160 builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
161 public void onClick(DialogInterface dialog, int id) {
162 dialog.dismiss();
163 startTimetableFetcher();
164
165 }
166 });
167 }
168 builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
169 public void onClick(DialogInterface dialog, int id) {
170 dialog.dismiss();
171 TimetableList.this.finish();
172 }
173 });
174
175 try {
176 builder.show();
177 } catch (android.view.WindowManager.BadTokenException e) {
178 Log.i("TimetableList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
179 }
180
181 }
182
183 }
184
185 @Override
186 protected Void doInBackground(String... arg0) {
187 String type = arg0[0];
188 String trainID = arg0[1];
189 timetables = provider.lookupTimetable(type, trainID);
190
191 return null;
192 }
193
194 }
195 }

  ViewVC Help
Powered by ViewVC 1.1.20