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

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

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

android/TrainInfo/src/dk/thoerup/traininfo/TrainInfoList.java revision 239 by torben, Sun Aug 9 09:09:16 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/StationList.java revision 374 by torben, Wed Sep 30 20:38:47 2009 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
3    import java.util.ArrayList;
4    import java.util.List;
5    import java.util.Locale;
6    
7  import android.app.AlertDialog;  import android.app.AlertDialog;
8  import android.app.Dialog;  import android.app.Dialog;
9  import android.app.ListActivity;  import android.app.ListActivity;
10  import android.app.ProgressDialog;  import android.app.ProgressDialog;
11  import android.content.DialogInterface;  import android.content.DialogInterface;
12  import android.content.Intent;  import android.content.Intent;
13    import android.location.Address;
14    import android.location.Geocoder;
15    import android.location.Location;
16    import android.os.AsyncTask;
17  import android.os.Bundle;  import android.os.Bundle;
18  import android.os.Handler;  import android.os.Handler;
19  import android.os.Message;  import android.os.Message;
20    import android.util.Log;
21    import android.view.Menu;
22    import android.view.MenuItem;
23  import android.view.View;  import android.view.View;
24  import android.widget.ListView;  import android.widget.ListView;
25    
26  public class TrainInfoList extends ListActivity  {  
27          public static final int GOTLOCATION = 1;  import dk.thoerup.traininfo.provider.ProviderFactory;
28          public static final int GOTSTATIONLIST = 2;  import dk.thoerup.traininfo.provider.StationProvider;
29          public static final int NOPROVIDER = 3;  import dk.thoerup.traininfo.stationmap.GeoPair;
30          public static final int FIXTIMEOUT = 4;  import dk.thoerup.traininfo.stationmap.StationMapView;
31          public static final int LOOKUPSTATIONFAILED = 5;  import dk.thoerup.traininfo.util.MessageBox;
32    
33    public class StationList extends ListActivity  {
34            public static final int GOTLOCATION = 1001;
35            public static final int GOTSTATIONLIST = 1002;
36            public static final int NOPROVIDER = 1003;
37            public static final int LOCATIONFIXTIMEOUT = 1004;
38            
39            public static final int OPTIONS_MAP = 2001;
40            public static final int OPTIONS_ABOUT = 2002;
41    
42                    
43          public static final int DLG_PROGRESS = 1;          public static final int DLG_PROGRESS = 1001;
44                    
45          /** Called when the activity is first created. */          /** Called when the activity is first created. */
46            String dialogMessage = "";
47          ProgressDialog dialog;          ProgressDialog dialog;
48          StationLocator locator = null;          LocationLookup locator = null;
49            LocatorTask locatorTask;
50            
51            GeoPair location = new GeoPair();
52            
53            boolean isRunning = false;
54            List<StationBean> stations = new ArrayList<StationBean>();
55            
56            StationProvider stationProvider = ProviderFactory.getStationProvider();
57            
58                    
         boolean isRunning;  
   
59          StationListAdapter adapter = null;          StationListAdapter adapter = null;
60            @SuppressWarnings("unchecked")
61          @Override          @Override
62          public void onCreate(Bundle savedInstanceState) {          public void onCreate(Bundle savedInstanceState) {
63                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
64                  setContentView(R.layout.main);                  setContentView(R.layout.main);
65                                    
66                    
67                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this);
68                  setListAdapter(adapter);                  setListAdapter(adapter);
69                                    
70                  locator = new StationLocator(this, stationsFetched);                  locator = new LocationLookup(this, stationsFetched);
71                                    if (savedInstanceState == null) {
72                  startLookup();                          startLookup();
73                    } else {
74                            stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
75                            adapter.setStations(stations);
76                            location = (GeoPair) savedInstanceState.getSerializable("location");
77                    }
78          }          }
79    
80    
81        @Override
82        public void onSaveInstanceState(Bundle outState)
83        {
84            if (dialog != null && dialog.isShowing())
85                    dialog.dismiss();
86            outState.putSerializable("stations", (ArrayList<StationBean>) stations);
87            outState.putSerializable("location", location);
88        }
89                    
90                    
91    
92          @Override          @Override
93            public boolean onCreateOptionsMenu(Menu menu) {
94                    menu.add(0, OPTIONS_MAP, 0, "Show station map");
95                    menu.add(0, OPTIONS_ABOUT, 0, "About");
96                    
97                    return true;
98            }
99    
100            @Override
101            public boolean onOptionsItemSelected(MenuItem item) {
102                    boolean retval;
103                    
104                    switch (item.getItemId()) {
105                    case OPTIONS_MAP:
106                            
107                            Intent intent = new Intent(this,StationMapView.class);
108                            intent.putExtra("userlocation", location );
109                            
110                            ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
111                            for (StationBean st : stations ) {
112                                    stationPoints.add( new GeoPair(st.getLatitude(), st.getLongitude(), st.getName()) );
113                            }
114                            
115                            intent.putExtra("stations", stationPoints);
116                            
117                            startActivity(intent);
118                            retval = true;
119                            break;
120                    case OPTIONS_ABOUT:
121                            String ver = this.getResources().getString(R.string.app_version);
122                            
123                            StringBuffer message = new StringBuffer();
124                            message.append("TrainInfo DK v").append(ver).append("\n");
125                            message.append("By Torben Nielsen\n");
126    
127                            MessageBox.showMessage(this, message.toString());
128                            retval = true;
129                            break;
130                    default:
131                            retval = super.onOptionsItemSelected(item);
132                    }
133                    
134                    return retval;
135            }
136    
137            @Override
138          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
139                  switch (id) {                  switch (id) {
140                  case DLG_PROGRESS:                  case DLG_PROGRESS:
141                          ProgressDialog dlg = new ProgressDialog(this);                          ProgressDialog dlg = new ProgressDialog(this);
142                          dlg.setMessage("Wait for location fix");                          dlg.setMessage("Wait for location fix");
143                          dlg.setCancelable(false);                          dlg.setCancelable(false);
144                          return dlg;                          return dlg;                    
145                  default:                  default:
146                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
147                  }                  }
# Line 59  public class TrainInfoList extends ListA Line 150  public class TrainInfoList extends ListA
150                    
151                    
152    
   
153          @Override          @Override
154          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
155                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
156                  switch (id) {                  switch (id) {
157                  case DLG_PROGRESS:                  case DLG_PROGRESS:
158                          this.dialog = (ProgressDialog) dialog;                          this.dialog = (ProgressDialog) dialog;
159                            if (!dialogMessage.equals("")) {
160                                    this.dialog.setMessage(dialogMessage);
161                                    dialogMessage = "";
162                            }
163                          break;                          break;
164                  }                  }
165          }          }
166    
   
   
         public void progressDialog() {  
                 dialog = new ProgressDialog(this);  
                 dialog.setMessage("Wait for location fix");  
                 dialog.setCancelable(false);  
                 dialog.show();  
         }  
   
167          public void startLookup() {          public void startLookup() {
168                  isRunning = true;                  isRunning = true;
169                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
                 //progressDialog();  
170                                    
171                  locator.locateStations();                  locator.locateStations();
172                  stationsFetched.sendEmptyMessageDelayed(FIXTIMEOUT, 20000);                              stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
173          }          }
174    
175    
176          Handler stationsFetched = new Handler() {          Handler stationsFetched = new Handler() {
177                  @Override                  @Override
178                  public void handleMessage(Message msg) {                  public void handleMessage(Message msg) {
179                            
180                          switch (msg.what) {                          switch (msg.what) {
181                          case GOTLOCATION:                          case GOTLOCATION:
182                                  dialog.setMessage("Finding nearby stations");                                  dismissDialog(DLG_PROGRESS);
183                                  break;                                  
184                          case GOTSTATIONLIST:                                  startLocatorTask();
185                                  dialog.dismiss();                                  location = GeoPair.fromLocation( locator.getLocation() );
186                                  adapter.setStations( locator.getStations() );                                  
187                                  break;                                  break;
188    
189                          case NOPROVIDER:                          case NOPROVIDER:
190                                  dialog.dismiss();                                  dismissDialog(DLG_PROGRESS);
191                                  showMessageBox("No Location provider enabled. Plase enabled gps.");                                  MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
192                                  break;                                  break;
193                          case FIXTIMEOUT:                          case LOCATIONFIXTIMEOUT:                                
                                 dialog.dismiss();  
194                                  if (isRunning) {                                  if (isRunning) {
195                                          locator.abortLocationListener();                                          locator.stopSearch();
196                                          showMessageBox("GPS fix timed out");                                          if (locator.hasLocation()) {
197                                                    stationsFetched.sendEmptyMessage( GOTLOCATION );
198                                            } else {                                                
199                                                    dismissDialog(DLG_PROGRESS);
200                                                    
201                                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
202                                                    builder.setMessage("GPS fix timed out");
203                                                    builder.setCancelable(true);
204                                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
205                                                            public void onClick(DialogInterface dialog, int id) {
206                                                                    dialog.dismiss();
207                                                                    startLookup();
208                                                                    
209                                                            }
210                                                    });
211                                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
212                                                            public void onClick(DialogInterface dialog, int id) {
213                                                                    dialog.dismiss();
214                                                            }                                                      
215                                                    });                                                                                            
216                                                    builder.show();
217    
218                                            }
219                                  }                                  }
220                                  break;                                  break;
                         case LOOKUPSTATIONFAILED:  
                                 dialog.dismiss();  
                                 showMessageBox("Error on finding nearby stations");  
                                 break;  
221                          }                          }
                           
222                          isRunning = false;                          isRunning = false;
223                  }                  }
224          };          };
225                    
226                    void startLocatorTask()
227            {
228                    dialogMessage = "Finding nearby stations";
229                    showDialog(DLG_PROGRESS);
230                    
231                    locatorTask = new LocatorTask();
232                    locatorTask.execute();  
233            }
234                    
235          @Override          @Override
236          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
237                  super.onListItemClick(l, v, position, id);                  super.onListItemClick(l, v, position, id);
238                                                    
239                  StationBean station = adapter.getStation(position);                  StationBean station = stations.get(position);
240                    
241                    double latitude = station.getLatitude();
242                    double longitude = station.getLongitude();
243    
244    
245                                    
246                  Intent intent = new Intent(this, DepartureList.class);                  Intent intent = new Intent(this, DepartureList.class);
247                  intent.putExtra("name", station.getName());                  intent.putExtra("name", station.getName());
                 intent.putExtra("address", station.getAddress());  
248                  intent.putExtra("distance", station.getDistance());                  intent.putExtra("distance", station.getDistance());
249                  intent.putExtra("latitude", station.getLatitude());                  intent.putExtra("latitude", latitude);
250                  intent.putExtra("longitude", station.getLongitude());                  intent.putExtra("longitude", longitude);
251                    intent.putExtra("stationid", station.getId());
252                    intent.putExtra("address", station.getAddress());
253                  startActivity(intent);                  startActivity(intent);
254          }          }
255    
256          public void showMessageBox(String message) {          String lookupAddress(double latitude, double longitude) {
257                  AlertDialog.Builder builder = new AlertDialog.Builder(this);                  
258                  builder.setMessage(message)                  Geocoder coder = new Geocoder(this, new Locale("da"));
259                  .setCancelable(false)                  StringBuilder sb = new StringBuilder();
260                  .setPositiveButton("OK", new DialogInterface.OnClickListener() {                  Log.i("lookupaddr", "" + latitude + "/" + longitude);
261                          public void onClick(DialogInterface dialog, int id) {                  try {
262                                  dialog.dismiss();                          List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);
263                            Address addr = addressList.get(0);
264                            
265                            
266                            int max = addr.getMaxAddressLineIndex();
267                            for (int i=0; i<max; i++) {
268                                    if (i>0)
269                                            sb.append(", ");
270                                    
271                                    sb.append(addr.getAddressLine(i));
272                            }
273                            
274                            
275                    } catch (Exception e) {
276                            Log.e("DepartureList", "geocoder failed", e);
277                    }
278                    
279                    return sb.toString();
280            }
281            
282            class LocatorTask extends AsyncTask<Void,Void,Void> {
283                    boolean success;
284                    @Override
285                    protected void onPreExecute() {
286    
287                            super.onPreExecute();
288                    }
289                    
290                    @Override
291                    protected Void doInBackground(Void... params) {
292                            Location loc = locator.getLocation();
293                            success = stationProvider.lookupStations(loc);
294                            
295                            
296                            List<StationBean> stations = stationProvider.getStations();
297                            for (StationBean station : stations) {
298                                    String addr = lookupAddress(station.getLatitude(), station.getLongitude());
299                                    station.setAddress(addr);
300                          }                          }
301                  })                          
302                  .show();                          return null;
303                    }
304    
305                    @Override
306                    protected void onPostExecute(Void result) {
307                            super.onPostExecute(result);
308                            dialog.dismiss();
309                            
310                            if (success) {                          
311                                    if (stationProvider.getStations().size() == 0)
312                                            MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
313                                    stations = stationProvider.getStations();
314                                    adapter.setStations( stations );                                
315                                    
316                            } else { //communication or parse errors
317                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
318                                    builder.setMessage("Error on finding nearby stations");
319                                    builder.setCancelable(true);
320                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
321                                            public void onClick(DialogInterface dialog, int id) {
322                                                    dialog.dismiss();
323                                                    
324                                                    stationsFetched.post( new Runnable() {
325                                                            @Override
326                                                            public void run() {
327                                                                    startLocatorTask();                                                            
328                                                            }
329                                                    });
330                                            }
331                                    });
332                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
333                                            public void onClick(DialogInterface dialog, int id) {
334                                                    dialog.dismiss();
335                                            }                                                      
336                                    });                                                                                            
337                                    builder.show();                        
338                            }
339                    }
340          }          }
341  }  }

Legend:
Removed from v.239  
changed lines
  Added in v.374

  ViewVC Help
Powered by ViewVC 1.1.20