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

  ViewVC Help
Powered by ViewVC 1.1.20