/[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 843 - (show annotations) (download)
Sun Jun 13 13:45:37 2010 UTC (13 years, 11 months ago) by torben
File size: 5227 byte(s)
Finish activities if data lookup failed
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 android.widget.Toast;
26 import dk.thoerup.traininfo.provider.ProviderFactory;
27 import dk.thoerup.traininfo.provider.TimetableProvider;
28 import dk.thoerup.traininfo.util.MessageBox;
29
30 public class TimetableList extends ListActivity {
31
32 private static final int DLG_PROGRESS = 8000;
33 DepartureBean departure;
34 TimetableListAdapter adapter;
35 TimetableFetcher fetcher;
36 List<TimetableBean> timetables;
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 = (DepartureBean) 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
72 @Override
73 protected void onListItemClick(ListView l, View v, int position, long id) {
74 super.onListItemClick(l, v, position, id);
75
76 TimetableBean tt = timetables.get(position);
77
78 StationBean station = new StationBean();
79 station.setName( tt.getStation() );
80 station.setId( tt.getStationId() );
81 station.setRegional(true);
82
83 Intent intent = new Intent(this, DepartureList.class);
84 intent.putExtra("stationbean", station);
85 startActivity(intent);
86
87 }
88
89
90
91 @Override
92 public void onSaveInstanceState(Bundle outState)
93 {
94 dismissDialog(DLG_PROGRESS);
95 outState.putSerializable("timetables", (ArrayList<TimetableBean>) timetables);
96 }
97
98
99 @Override
100 protected void onPrepareDialog(int id, Dialog dialog) {
101 super.onPrepareDialog(id, dialog);
102
103 switch (id) {
104 case DLG_PROGRESS:
105 //pgDialog = (ProgressDialog) dialog;
106 break;
107 }
108 }
109
110 @Override
111 protected Dialog onCreateDialog(int id) {
112 switch (id) {
113 case DLG_PROGRESS:
114 ProgressDialog dlg = new ProgressDialog(this);
115 dlg.setMessage( getString(timetablelist_fetchdata) );
116 dlg.setCancelable(true);
117 return dlg;
118 default:
119 return super.onCreateDialog(id);
120 }
121 }
122
123 void startTimetableFetcher() {
124 showDialog(DLG_PROGRESS);
125 fetcher = new TimetableFetcher();
126 fetcher.execute(departure.getType(), departure.getTrainNumber());
127 }
128
129 class TimetableFetcher extends AsyncTask<String,Void,Void> {
130
131 boolean success;
132
133 @Override
134 protected void onPostExecute(Void result) {
135 super.onPostExecute(result);
136 dismissDialog(DLG_PROGRESS);
137
138
139 if (success) {
140 adapter.setTimetable(timetables);
141 if (timetables.size() == 0) {
142 MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata));
143 }
144 } else { // communication or parse error
145 AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);
146 builder.setMessage(getString(timetablelist_fetcherror));
147 builder.setCancelable(true);
148 builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
149 public void onClick(DialogInterface dialog, int id) {
150 dialog.dismiss();
151 startTimetableFetcher();
152
153 }
154 });
155 builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
156 public void onClick(DialogInterface dialog, int id) {
157 dialog.dismiss();
158 TimetableList.this.finish();
159 }
160 });
161
162 try {
163 builder.show();
164 } catch (android.view.WindowManager.BadTokenException e) {
165 Log.i("TimetableList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
166 }
167
168 }
169
170 }
171
172 @Override
173 protected Void doInBackground(String... arg0) {
174 String type = arg0[0];
175 String trainID = arg0[1];
176 success = provider.lookupTimetable(type, trainID);
177 timetables = provider.getTimetable(type, trainID);
178
179 return null;
180 }
181
182 }
183 }

  ViewVC Help
Powered by ViewVC 1.1.20