/[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 336 - (hide annotations) (download)
Wed Sep 23 12:51:49 2009 UTC (14 years, 8 months ago) by torben
File size: 7221 byte(s)
* Enable retry on errors,
* rename TrainInfoList to StationList
* add AdMob advertising
1 torben 237 package dk.thoerup.traininfo;
2    
3     import java.text.NumberFormat;
4 torben 257 import java.util.ArrayList;
5 torben 237 import java.util.List;
6 torben 316 import java.util.Locale;
7 torben 237
8 torben 336 import android.app.AlertDialog;
9 torben 237 import android.app.Dialog;
10     import android.app.ListActivity;
11     import android.app.ProgressDialog;
12 torben 336 import android.content.DialogInterface;
13 torben 237 import android.content.Intent;
14 torben 316 import android.location.Address;
15     import android.location.Geocoder;
16 torben 239 import android.net.Uri;
17 torben 237 import android.os.AsyncTask;
18     import android.os.Bundle;
19 torben 316 import android.util.Log;
20 torben 237 import android.view.View;
21     import android.widget.ListView;
22     import android.widget.TextView;
23 torben 255 import dk.thoerup.traininfo.provider.DepartureProvider;
24 torben 253 import dk.thoerup.traininfo.provider.ProviderFactory;
25 torben 245 import dk.thoerup.traininfo.util.MessageBox;
26 torben 237
27     public class DepartureList extends ListActivity {
28    
29     public static final int DLG_PROGRESS = 1;
30     public static final int DLG_DETAILS = 2;
31    
32     DepartureListAdapter adapter;
33     DepartureProvider provider;
34     List<DepartureBean> departures;
35    
36 torben 257 int selectedItemId;
37     //DepartureBean currentDeparture;
38 torben 237
39     ProgressDialog pgDialog;
40 torben 257 Dialog detailsDialog;
41 torben 238 DepartureFetcher fetcher;
42 torben 336 int stationId;
43 torben 238
44 torben 239 double latitude,longitude;
45    
46 torben 257 @SuppressWarnings("unchecked")
47 torben 237 @Override
48     protected void onCreate(Bundle savedInstanceState) {
49     super.onCreate(savedInstanceState);
50     setContentView(R.layout.departurelist);
51    
52     adapter = new DepartureListAdapter(this);
53     setListAdapter(adapter);
54    
55     Intent launchedBy = getIntent();
56 torben 239
57     latitude = launchedBy.getDoubleExtra("latitude", 0.0);
58     longitude = launchedBy.getDoubleExtra("longitude", 0.0);
59    
60 torben 237 String name = launchedBy.getStringExtra("name");
61     ((TextView) findViewById(R.id.stationName)).setText( name );
62 torben 317
63     String address = launchedBy.getStringExtra("address");
64     ((TextView) findViewById(R.id.stationAddr)).setText( address );
65 torben 237
66 torben 336 stationId = launchedBy.getIntExtra("stationid", -1);
67 torben 294
68 torben 239 findViewById(R.id.header).setOnClickListener( mapLauncher );
69 torben 237
70     NumberFormat format = NumberFormat.getNumberInstance();
71     format.setMaximumFractionDigits(1);
72     format.setMinimumFractionDigits(1);
73     int distance = launchedBy.getIntExtra("distance", 0);
74     ((TextView) findViewById(R.id.stationDistance)).setText( format.format((double)distance/1000.0) + " km." );
75    
76 torben 238
77 torben 253 provider = ProviderFactory.getDepartureProvider();
78 torben 238
79 torben 257 if (savedInstanceState == null) {
80 torben 336 startDepartureFetcher();
81 torben 257 } else {
82     departures = (List<DepartureBean>) savedInstanceState.getSerializable("departures");
83     adapter.setDepartures(departures);
84     selectedItemId = savedInstanceState.getInt("selectedItemId");
85     boolean detailsShowing = savedInstanceState.getBoolean("detailsShowing");
86     if (detailsShowing)
87     showDialog(DLG_DETAILS);
88     }
89 torben 237 }
90    
91 torben 243 @Override
92     public void onSaveInstanceState(Bundle outState)
93     {
94 torben 257 if (pgDialog != null && pgDialog.isShowing())
95     dismissDialog(DLG_PROGRESS);
96     boolean detailsShowing = (detailsDialog != null && detailsDialog.isShowing());
97     if (detailsShowing) {
98     dismissDialog(DLG_DETAILS);
99     }
100     outState.putBoolean("detailsShowing", detailsShowing);
101     outState.putInt("selectedItemId", selectedItemId);
102    
103     outState.putSerializable("departures", (ArrayList<DepartureBean>) departures);
104 torben 243 }
105    
106 torben 237 @Override
107     protected void onListItemClick(ListView l, View v, int position, long id) {
108     super.onListItemClick(l, v, position, id);
109    
110 torben 257 selectedItemId = position;
111 torben 237 showDialog(DLG_DETAILS);
112     }
113    
114    
115     @Override
116     protected void onPrepareDialog(int id, Dialog dialog) {
117     super.onPrepareDialog(id, dialog);
118 torben 257
119 torben 237 switch (id) {
120     case DLG_DETAILS:
121 torben 257 DepartureBean currentDeparture = departures.get(selectedItemId);
122 torben 237 ((TextView)dialog.findViewById(R.id.Time)).setText(currentDeparture.getTime());
123 torben 249 ((TextView)dialog.findViewById(R.id.Train)).setText(currentDeparture.getTrainNumber());
124 torben 237 ((TextView)dialog.findViewById(R.id.Destination)).setText( currentDeparture.getDestination());
125     ((TextView)dialog.findViewById(R.id.Origin)).setText(currentDeparture.getOrigin());
126     ((TextView)dialog.findViewById(R.id.Location)).setText(currentDeparture.getLocation());
127     ((TextView)dialog.findViewById(R.id.Updated)).setText(currentDeparture.getLastUpdateString());
128     ((TextView)dialog.findViewById(R.id.Status)).setText(currentDeparture.getStatus());
129     ((TextView)dialog.findViewById(R.id.Note)).setText(currentDeparture.getNote());
130 torben 257 detailsDialog = dialog;
131 torben 237 break;
132     case DLG_PROGRESS:
133     pgDialog = (ProgressDialog) dialog;
134     break;
135     }
136     }
137    
138     @Override
139     protected Dialog onCreateDialog(int id) {
140     switch (id) {
141     case DLG_PROGRESS:
142     ProgressDialog dlg = new ProgressDialog(this);
143     dlg.setMessage("Fetch departure data");
144     dlg.setCancelable(true);
145     return dlg;
146     case DLG_DETAILS:
147     //Context mContext = getApplicationContext();
148     Dialog dialog = new Dialog(this);
149     dialog.setCancelable(true);
150    
151     dialog.setContentView(R.layout.departuredetails);
152     dialog.setTitle("Departure details");
153    
154     View root = dialog.findViewById(R.id.layout_root);
155     root.setOnClickListener( new DialogDismisser(dialog) );
156     return dialog;
157     default:
158     return super.onCreateDialog(id);
159     }
160     }
161 torben 336
162     void startDepartureFetcher() {
163     showDialog(DLG_PROGRESS);
164     fetcher = new DepartureFetcher();
165     fetcher.execute(stationId);
166     }
167 torben 316
168 torben 237 class DialogDismisser implements View.OnClickListener {
169    
170     Dialog dlg;
171     public DialogDismisser(Dialog d) {
172     dlg = d;
173     }
174    
175     @Override
176     public void onClick(View v) {
177     if (dlg.isShowing())
178     dlg.dismiss();
179     }
180 torben 336
181 torben 238
182 torben 336 }
183    
184 torben 239 View.OnClickListener mapLauncher = new View.OnClickListener() {
185     @Override
186     public void onClick(View v) {
187     Uri uri = Uri.parse("geo:" + latitude + "," + longitude);
188     startActivity( new Intent(Intent.ACTION_VIEW, uri));
189     }
190     };
191 torben 336
192    
193 torben 238
194 torben 310 class DepartureFetcher extends AsyncTask<Integer, Void, Void> {
195 torben 238
196 torben 319 boolean success;
197 torben 316 String addr;
198 torben 238 @Override
199     protected void onPostExecute(Void result) {
200     super.onPostExecute(result);
201    
202 torben 336
203 torben 238 pgDialog.dismiss();
204    
205 torben 319 if (success) {
206 torben 336 adapter.setDepartures(departures);
207 torben 319 if (departures.size() == 0) {
208     MessageBox.showMessage(DepartureList.this, "No departures found");
209     }
210     } else { // communication or parse error
211 torben 336 AlertDialog.Builder builder = new AlertDialog.Builder(DepartureList.this);
212     builder.setMessage("Error finding departures");
213     builder.setCancelable(true);
214     builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
215     public void onClick(DialogInterface dialog, int id) {
216     dialog.dismiss();
217     startDepartureFetcher();
218    
219     }
220     });
221     builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
222     public void onClick(DialogInterface dialog, int id) {
223     dialog.dismiss();
224     }
225     });
226     builder.show();
227 torben 319 }
228 torben 238 }
229    
230     @Override
231 torben 310 protected Void doInBackground(Integer... params) {
232 torben 319 success = provider.lookupDepartures(params[0]);
233     departures = provider.getDepartures(params[0]);
234 torben 238 return null;
235     }
236    
237     }
238 torben 237 }

  ViewVC Help
Powered by ViewVC 1.1.20