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

Annotation of /android/TrainInfo/src/dk/thoerup/traininfo/DepartureList.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 990 - (hide annotations) (download)
Mon Jul 12 16:09:39 2010 UTC (13 years, 10 months ago) by torben
File size: 9489 byte(s)
Only try to set departures if we actually have some
1 torben 237 package dk.thoerup.traininfo;
2    
3 torben 835 import static dk.thoerup.traininfo.R.string.departurelist_fetchdepartures;
4     import static dk.thoerup.traininfo.R.string.departurelist_fetcharrivals;
5     import static dk.thoerup.traininfo.R.string.generic_cancel;
6     import static dk.thoerup.traininfo.R.string.generic_retry;
7    
8    
9 torben 237 import java.text.NumberFormat;
10    
11 torben 981
12 torben 336 import android.app.AlertDialog;
13 torben 237 import android.app.Dialog;
14     import android.app.ListActivity;
15     import android.app.ProgressDialog;
16 torben 336 import android.content.DialogInterface;
17 torben 237 import android.content.Intent;
18 torben 239 import android.net.Uri;
19 torben 237 import android.os.AsyncTask;
20     import android.os.Bundle;
21 torben 630 import android.util.Log;
22 torben 982 import android.view.Menu;
23     import android.view.MenuItem;
24 torben 237 import android.view.View;
25 torben 835 import android.view.View.OnClickListener;
26     import android.widget.Button;
27 torben 237 import android.widget.ListView;
28     import android.widget.TextView;
29 torben 255 import dk.thoerup.traininfo.provider.DepartureProvider;
30 torben 253 import dk.thoerup.traininfo.provider.ProviderFactory;
31 torben 245 import dk.thoerup.traininfo.util.MessageBox;
32 torben 237
33     public class DepartureList extends ListActivity {
34    
35     public static final int DLG_PROGRESS = 1;
36 torben 982 static final int MENU_MAP = 100;
37     static final int MENU_NOTIFICATIONS = 101;
38 torben 237
39 torben 362
40 torben 237 DepartureListAdapter adapter;
41     DepartureProvider provider;
42 torben 981 DepartureBean departures;
43 torben 237
44 torben 257 int selectedItemId;
45     //DepartureBean currentDeparture;
46 torben 237
47     ProgressDialog pgDialog;
48 torben 362
49 torben 238 DepartureFetcher fetcher;
50 torben 557
51     StationBean station;
52 torben 238
53 torben 835 boolean arrival = false;
54    
55 torben 981
56 torben 237 @Override
57     protected void onCreate(Bundle savedInstanceState) {
58     super.onCreate(savedInstanceState);
59     setContentView(R.layout.departurelist);
60    
61     adapter = new DepartureListAdapter(this);
62     setListAdapter(adapter);
63    
64     Intent launchedBy = getIntent();
65 torben 557
66     station = (StationBean) launchedBy.getSerializableExtra("stationbean");
67 torben 239
68 torben 557 ((TextView) findViewById(R.id.stationName)).setText( station.getName() );
69 torben 317
70 torben 557
71     ((TextView) findViewById(R.id.stationAddr)).setText( station.getAddress() );
72 torben 237
73 torben 835 final Button departureBtn = (Button) findViewById(R.id.departurebtn);
74     final Button arrivalBtn = (Button) findViewById(R.id.arrivalbtn);
75 torben 294
76 torben 835 departureBtn.setOnClickListener( new OnClickListener() {
77     @Override
78     public void onClick(View arg0) {
79     arrivalBtn.setBackgroundResource(R.drawable.custom_button);
80     departureBtn.setBackgroundResource(R.drawable.custom_button_hilight);
81     arrival = false;
82     startDepartureFetcher();
83     }
84     });
85     arrivalBtn.setOnClickListener( new OnClickListener() {
86     @Override
87     public void onClick(View arg0) {
88     arrivalBtn.setBackgroundResource(R.drawable.custom_button_hilight);
89     departureBtn.setBackgroundResource(R.drawable.custom_button);
90     arrival = true;
91     startDepartureFetcher();
92     }
93     });
94    
95    
96    
97    
98 torben 982 // findViewById(R.id.header).setOnClickListener( mapLauncher );
99 torben 237
100 torben 557 int distance = station.getDistance();
101 torben 742 if (distance != 0) {
102     NumberFormat format = NumberFormat.getNumberInstance();
103     format.setMaximumFractionDigits(1);
104     format.setMinimumFractionDigits(1);
105 torben 575
106 torben 742 ((TextView) findViewById(R.id.stationDistance)).setText( format.format((double)distance/1000.0) + " km." );
107     } else {
108     ((TextView) findViewById(R.id.stationDistance)).setVisibility(View.GONE);
109     }
110    
111 torben 552
112 torben 557 if (station.isRegional() == false && station.isSTrain() == false) {
113 torben 552 getListView().setVisibility( View.GONE );
114     findViewById(R.id.metroonly).setVisibility( View.VISIBLE );
115 torben 835 departureBtn.setVisibility( View.GONE );
116     arrivalBtn.setVisibility(View.GONE);
117 torben 552
118 torben 257 } else {
119 torben 552 provider = ProviderFactory.getDepartureProvider();
120    
121     if (savedInstanceState == null) {
122     startDepartureFetcher();
123     } else {
124 torben 981 departures = (DepartureBean) savedInstanceState.getSerializable("departures");
125 torben 990
126     if ( (departures != null) && (departures.entries != null) ) {
127     adapter.setDepartures(departures.entries);
128     }
129 torben 982 selectedItemId = savedInstanceState.getInt("selectedItemId");
130    
131     if ( hasNotifications() ) {
132     findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);
133     }
134    
135 torben 552 }
136 torben 257 }
137 torben 237 }
138    
139 torben 982 boolean hasNotifications() {
140     return (departures != null && departures.notifications.size() > 0);
141     }
142    
143 torben 243 @Override
144     public void onSaveInstanceState(Bundle outState)
145     {
146 torben 257 if (pgDialog != null && pgDialog.isShowing())
147     dismissDialog(DLG_PROGRESS);
148 torben 362
149 torben 257 outState.putInt("selectedItemId", selectedItemId);
150    
151 torben 981 outState.putSerializable("departures", departures);
152 torben 243 }
153 torben 918
154    
155 torben 243
156 torben 237 @Override
157 torben 918 protected void onDestroy() {
158     super.onDestroy();
159    
160     if (fetcher != null) {
161     fetcher.cancel(true);
162     }
163     }
164    
165     @Override
166 torben 237 protected void onListItemClick(ListView l, View v, int position, long id) {
167     super.onListItemClick(l, v, position, id);
168 torben 362
169     selectedItemId = position;
170 torben 364
171 torben 981 DepartureEntry dep = departures.entries.get(selectedItemId);
172 torben 237
173 torben 362 Intent intent = new Intent(this, TimetableList.class);
174 torben 364 intent.putExtra("departure", dep);
175 torben 362
176     startActivity(intent);
177    
178 torben 237 }
179    
180    
181     @Override
182     protected void onPrepareDialog(int id, Dialog dialog) {
183     super.onPrepareDialog(id, dialog);
184 torben 257
185 torben 237 switch (id) {
186     case DLG_PROGRESS:
187     pgDialog = (ProgressDialog) dialog;
188 torben 835 int messageId = arrival == false ? departurelist_fetchdepartures : departurelist_fetcharrivals;
189     pgDialog.setMessage( getString(messageId) );
190 torben 237 break;
191     }
192     }
193    
194     @Override
195     protected Dialog onCreateDialog(int id) {
196     switch (id) {
197     case DLG_PROGRESS:
198 torben 835
199 torben 237 ProgressDialog dlg = new ProgressDialog(this);
200     dlg.setCancelable(true);
201 torben 362 return dlg;
202 torben 237 default:
203     return super.onCreateDialog(id);
204     }
205     }
206 torben 982
207    
208 torben 336
209 torben 982
210    
211     @Override
212     public boolean onCreateOptionsMenu(Menu menu) {
213     MenuItem item;
214 torben 985
215     item = menu.add(0, MENU_MAP, 0, getString(R.string.departurelist_showonmap) );
216 torben 982 item.setIcon(android.R.drawable.ic_menu_mapmode);
217    
218 torben 985 item = menu.add(0, MENU_NOTIFICATIONS, 0, getString(R.string.departurelist_notifications) );
219 torben 982 item.setIcon(android.R.drawable.ic_menu_info_details);
220    
221    
222     boolean notifEnabled = hasNotifications();
223     item.setEnabled(notifEnabled);
224    
225    
226     return true;
227     }
228    
229     @Override
230     public boolean onOptionsItemSelected(MenuItem item) {
231     boolean res;
232     switch(item.getItemId()) {
233     case MENU_MAP:
234     Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
235     startActivity( new Intent(Intent.ACTION_VIEW, uri));
236     res = true;
237     break;
238     case MENU_NOTIFICATIONS:
239     Intent i = new Intent(this,dk.thoerup.traininfo.NotificationList.class);
240     i.putExtra(NotificationList.EXTRA_NOTIFICATIONS, departures.notifications);
241     startActivity(i);
242     res = true;
243     break;
244     default:
245     res = super.onOptionsItemSelected(item);
246     }
247     return res;
248     }
249    
250 torben 336 void startDepartureFetcher() {
251     showDialog(DLG_PROGRESS);
252     fetcher = new DepartureFetcher();
253 torben 557 fetcher.execute(station.getId());
254 torben 336 }
255 torben 316
256 torben 237 class DialogDismisser implements View.OnClickListener {
257    
258     Dialog dlg;
259     public DialogDismisser(Dialog d) {
260     dlg = d;
261     }
262    
263     @Override
264     public void onClick(View v) {
265     if (dlg.isShowing())
266     dlg.dismiss();
267 torben 365 }
268     }
269 torben 238
270 torben 982 /*View.OnClickListener mapLauncher = new View.OnClickListener() {
271 torben 239 @Override
272 torben 557 public void onClick(View v) {
273     Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
274 torben 239 startActivity( new Intent(Intent.ACTION_VIEW, uri));
275     }
276 torben 982 };*/
277 torben 336
278    
279 torben 238
280 torben 310 class DepartureFetcher extends AsyncTask<Integer, Void, Void> {
281 torben 238
282 torben 319 boolean success;
283 torben 365
284 torben 238 @Override
285     protected void onPostExecute(Void result) {
286     super.onPostExecute(result);
287    
288 torben 336
289 torben 238 pgDialog.dismiss();
290    
291 torben 319 if (success) {
292 torben 917 DepartureList.this.getListView().setVisibility(View.GONE); //Experimental, inspired by http://osdir.com/ml/Android-Developers/2010-04/msg01198.html
293 torben 981 adapter.setDepartures(departures.entries);
294 torben 917 DepartureList.this.getListView().setVisibility(View.VISIBLE);
295    
296 torben 982
297     if ( hasNotifications() ) {
298     findViewById(R.id.notifIcon).setVisibility(View.VISIBLE);
299     }
300    
301 torben 981 if (departures.entries.size() == 0) {
302 torben 906 MessageBox.showMessage(DepartureList.this, "No departures found", true);
303 torben 319 }
304     } else { // communication or parse error
305 torben 336 AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);
306     builder.setMessage("Error finding departures");
307     builder.setCancelable(true);
308 torben 561 builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
309 torben 336 public void onClick(DialogInterface dialog, int id) {
310     dialog.dismiss();
311     startDepartureFetcher();
312    
313     }
314     });
315 torben 561 builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
316 torben 336 public void onClick(DialogInterface dialog, int id) {
317     dialog.dismiss();
318 torben 843 DepartureList.this.finish();
319 torben 336 }
320 torben 630 });
321    
322     try {
323     builder.show();
324     } catch (android.view.WindowManager.BadTokenException e) {
325     Log.i("DepartureList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
326     }
327 torben 319 }
328 torben 238 }
329    
330     @Override
331 torben 310 protected Void doInBackground(Integer... params) {
332 torben 835 success = provider.lookupDepartures(params[0], DepartureList.this.arrival);
333     departures = provider.getDepartures(params[0], DepartureList.this.arrival);
334 torben 238 return null;
335     }
336    
337     }
338 torben 237 }

  ViewVC Help
Powered by ViewVC 1.1.20