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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.249  
changed lines
  Added in v.1027

  ViewVC Help
Powered by ViewVC 1.1.20