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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 630 - (show annotations) (download)
Wed Mar 17 15:27:11 2010 UTC (14 years, 2 months ago) by torben
File size: 5992 byte(s)
Catch exceptions
1 package dk.thoerup.traininfo;
2
3 import java.text.NumberFormat;
4 import java.util.ArrayList;
5 import java.util.List;
6
7 import android.app.AlertDialog;
8 import android.app.Dialog;
9 import android.app.ListActivity;
10 import android.app.ProgressDialog;
11 import android.content.DialogInterface;
12 import android.content.Intent;
13 import android.net.Uri;
14 import android.os.AsyncTask;
15 import android.os.Bundle;
16 import android.util.Log;
17 import android.view.View;
18 import android.widget.ListView;
19 import android.widget.TextView;
20 import dk.thoerup.traininfo.provider.DepartureProvider;
21 import dk.thoerup.traininfo.provider.ProviderFactory;
22 import dk.thoerup.traininfo.util.MessageBox;
23 import static dk.thoerup.traininfo.R.string.*;
24
25 public class DepartureList extends ListActivity {
26
27 public static final int DLG_PROGRESS = 1;
28
29
30 DepartureListAdapter adapter;
31 DepartureProvider provider;
32 List<DepartureBean> departures;
33
34 int selectedItemId;
35 //DepartureBean currentDeparture;
36
37 ProgressDialog pgDialog;
38
39 DepartureFetcher fetcher;
40
41 StationBean station;
42
43 @SuppressWarnings("unchecked")
44 @Override
45 protected void onCreate(Bundle savedInstanceState) {
46 super.onCreate(savedInstanceState);
47 setContentView(R.layout.departurelist);
48
49 adapter = new DepartureListAdapter(this);
50 setListAdapter(adapter);
51
52 Intent launchedBy = getIntent();
53
54 station = (StationBean) launchedBy.getSerializableExtra("stationbean");
55
56 ((TextView) findViewById(R.id.stationName)).setText( station.getName() );
57
58
59 ((TextView) findViewById(R.id.stationAddr)).setText( station.getAddress() );
60
61
62 findViewById(R.id.header).setOnClickListener( mapLauncher );
63
64 NumberFormat format = NumberFormat.getNumberInstance();
65 format.setMaximumFractionDigits(1);
66 format.setMinimumFractionDigits(1);
67
68
69 int distance = station.getDistance();
70 ((TextView) findViewById(R.id.stationDistance)).setText( format.format((double)distance/1000.0) + " km." );
71
72
73 if (station.isRegional() == false && station.isSTrain() == false) {
74 getListView().setVisibility( View.GONE );
75 findViewById(R.id.metroonly).setVisibility( View.VISIBLE );
76
77 } else {
78 provider = ProviderFactory.getDepartureProvider();
79
80 if (savedInstanceState == null) {
81 startDepartureFetcher();
82 } else {
83 departures = (List<DepartureBean>) savedInstanceState.getSerializable("departures");
84 adapter.setDepartures(departures);
85 selectedItemId = savedInstanceState.getInt("selectedItemId");
86 }
87 }
88 }
89
90 @Override
91 public void onSaveInstanceState(Bundle outState)
92 {
93 if (pgDialog != null && pgDialog.isShowing())
94 dismissDialog(DLG_PROGRESS);
95
96 outState.putInt("selectedItemId", selectedItemId);
97
98 outState.putSerializable("departures", (ArrayList<DepartureBean>) departures);
99 }
100
101 @Override
102 protected void onListItemClick(ListView l, View v, int position, long id) {
103 super.onListItemClick(l, v, position, id);
104
105 selectedItemId = position;
106
107 DepartureBean dep = departures.get(selectedItemId);
108
109 Intent intent = new Intent(this, TimetableList.class);
110 intent.putExtra("departure", dep);
111
112 startActivity(intent);
113
114 }
115
116
117 @Override
118 protected void onPrepareDialog(int id, Dialog dialog) {
119 super.onPrepareDialog(id, dialog);
120
121 switch (id) {
122 case DLG_PROGRESS:
123 pgDialog = (ProgressDialog) dialog;
124 break;
125 }
126 }
127
128 @Override
129 protected Dialog onCreateDialog(int id) {
130 switch (id) {
131 case DLG_PROGRESS:
132 ProgressDialog dlg = new ProgressDialog(this);
133 dlg.setMessage( getString(departurelist_fetchdata) );
134 dlg.setCancelable(true);
135 return dlg;
136 default:
137 return super.onCreateDialog(id);
138 }
139 }
140
141 void startDepartureFetcher() {
142 showDialog(DLG_PROGRESS);
143 fetcher = new DepartureFetcher();
144 fetcher.execute(station.getId());
145 }
146
147 class DialogDismisser implements View.OnClickListener {
148
149 Dialog dlg;
150 public DialogDismisser(Dialog d) {
151 dlg = d;
152 }
153
154 @Override
155 public void onClick(View v) {
156 if (dlg.isShowing())
157 dlg.dismiss();
158 }
159 }
160
161 View.OnClickListener mapLauncher = new View.OnClickListener() {
162 @Override
163 public void onClick(View v) {
164 Uri uri = Uri.parse("geo:" + station.getLatitude() + "," + station.getLongitude());
165 startActivity( new Intent(Intent.ACTION_VIEW, uri));
166 }
167 };
168
169
170
171 class DepartureFetcher extends AsyncTask<Integer, Void, Void> {
172
173 boolean success;
174
175 @Override
176 protected void onPostExecute(Void result) {
177 super.onPostExecute(result);
178
179
180 pgDialog.dismiss();
181
182 if (success) {
183 adapter.setDepartures(departures);
184 if (departures.size() == 0) {
185 MessageBox.showMessage(DepartureList.this, "No departures found");
186 }
187 } else { // communication or parse error
188 AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);
189 builder.setMessage("Error finding departures");
190 builder.setCancelable(true);
191 builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
192 public void onClick(DialogInterface dialog, int id) {
193 dialog.dismiss();
194 startDepartureFetcher();
195
196 }
197 });
198 builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
199 public void onClick(DialogInterface dialog, int id) {
200 dialog.dismiss();
201 }
202 });
203
204 try {
205 builder.show();
206 } catch (android.view.WindowManager.BadTokenException e) {
207 Log.i("DepartureList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
208 }
209 }
210 }
211
212 @Override
213 protected Void doInBackground(Integer... params) {
214 success = provider.lookupDepartures(params[0]);
215 departures = provider.getDepartures(params[0]);
216 return null;
217 }
218
219 }
220 }

  ViewVC Help
Powered by ViewVC 1.1.20