/[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

revision 563 by torben, Thu Jan 28 09:10:44 2010 UTC revision 1709 by torben, Tue Mar 6 11:02:04 2012 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
3  import java.util.ArrayList;  import static dk.thoerup.traininfo.R.string.app_name;
4  import java.util.List;  import static dk.thoerup.traininfo.R.string.generic_cancel;
5    import static dk.thoerup.traininfo.R.string.generic_retry;
6    import static dk.thoerup.traininfo.R.string.stationlist_accuracy;
7    import static dk.thoerup.traininfo.R.string.stationlist_addfavorite;
8    import static dk.thoerup.traininfo.R.string.stationlist_favorites;
9    import static dk.thoerup.traininfo.R.string.stationlist_gpsinfo;
10    import static dk.thoerup.traininfo.R.string.stationlist_gpstimeout;
11    import static dk.thoerup.traininfo.R.string.stationlist_latitude;
12    import static dk.thoerup.traininfo.R.string.stationlist_locationinfo;
13    import static dk.thoerup.traininfo.R.string.stationlist_longitude;
14    import static dk.thoerup.traininfo.R.string.stationlist_nearbystations;
15    import static dk.thoerup.traininfo.R.string.stationlist_nofavorites;
16    import static dk.thoerup.traininfo.R.string.stationlist_nolocationprovider;
17    import static dk.thoerup.traininfo.R.string.stationlist_obtainedby;
18    import static dk.thoerup.traininfo.R.string.stationlist_removefavorite;
19    import static dk.thoerup.traininfo.R.string.stationlist_satellitecount;
20    import static dk.thoerup.traininfo.R.string.stationlist_search;
21    import static dk.thoerup.traininfo.R.string.stationlist_stationadded;
22    import static dk.thoerup.traininfo.R.string.stationlist_stationmap;
23    import static dk.thoerup.traininfo.R.string.stationlist_stationremoved;
24    import static dk.thoerup.traininfo.R.string.stationlist_waitforlocation;
25    
26    import java.util.ArrayList;
27    
28    import android.app.Activity;
29  import android.app.AlertDialog;  import android.app.AlertDialog;
30  import android.app.Dialog;  import android.app.Dialog;
31  import android.app.ListActivity;  import android.app.ListActivity;
32  import android.app.ProgressDialog;  import android.app.ProgressDialog;
33  import android.content.DialogInterface;  import android.content.DialogInterface;
34  import android.content.Intent;  import android.content.Intent;
 import android.content.SharedPreferences;  
 import android.content.SharedPreferences.Editor;  
35  import android.location.Location;  import android.location.Location;
 import android.os.AsyncTask;  
36  import android.os.Bundle;  import android.os.Bundle;
37  import android.os.Handler;  import android.os.Handler;
38  import android.os.Message;  import android.os.Message;
39    import android.text.Editable;
40    import android.text.TextWatcher;
41    import android.util.Log;
42  import android.view.ContextMenu;  import android.view.ContextMenu;
43  import android.view.LayoutInflater;  import android.view.ContextMenu.ContextMenuInfo;
44  import android.view.Menu;  import android.view.Menu;
45  import android.view.MenuItem;  import android.view.MenuItem;
46  import android.view.View;  import android.view.View;
 import android.view.ContextMenu.ContextMenuInfo;  
47  import android.view.View.OnCreateContextMenuListener;  import android.view.View.OnCreateContextMenuListener;
48  import android.widget.AdapterView;  import android.widget.AdapterView;
 import android.widget.EditText;  
49  import android.widget.ListView;  import android.widget.ListView;
50    import android.widget.TextView;
51  import android.widget.Toast;  import android.widget.Toast;
52    import dk.thoerup.android.traininfo.common.StationBean;
53    import dk.thoerup.android.traininfo.common.StationEntry;
54    import dk.thoerup.traininfo.WelcomeScreen.ListType;
55  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
56  import dk.thoerup.traininfo.provider.StationProvider;  import dk.thoerup.traininfo.provider.StationProvider;
57  import dk.thoerup.traininfo.stationmap.GeoPair;  import dk.thoerup.traininfo.stationmap.GeoPair;
58  import dk.thoerup.traininfo.stationmap.StationMapView;  import dk.thoerup.traininfo.stationmap.StationMapView;
59  import dk.thoerup.traininfo.util.IntSet;  import dk.thoerup.traininfo.util.FavoritesHelper;
60  import dk.thoerup.traininfo.util.MessageBox;  import dk.thoerup.traininfo.util.MessageBox;
61    
 import static dk.thoerup.traininfo.R.string.*;  
   
62  public class StationList extends ListActivity  {  public class StationList extends ListActivity  {
         public static final int GOTLOCATION = 1001;  
         public static final int GOTSTATIONLIST = 1002;  
         public static final int NOPROVIDER = 1003;  
         public static final int LOCATIONFIXTIMEOUT = 1004;  
           
         public static final int OPTIONS_MAP = 2003;  
         public static final int OPTIONS_GPSINFO = 2004;  
63    
64                    
65            
66            public static final int OPTIONS_MAP = 103;
67            public static final int OPTIONS_GPSINFO = 104;
68                    
69          public static final int DLG_PROGRESS = 3001;          public static final int DLG_PROGRESS = 3001;
70          public static final int DLG_STATIONNAME = 3002;          
71            
72            public static final int GPS_TIMEOUT_MS = 15000; //how long are we willing to wait for gps fix -in milliseconds
73            
74                    
75          static enum LookupMethod {          static enum LookupMethod {
76                  ByLocation,                  ByLocation,
# Line 64  public class StationList extends ListAct Line 83  public class StationList extends ListAct
83          String dialogMessage = "";          String dialogMessage = "";
84          ProgressDialog dialog;          ProgressDialog dialog;
85          LocationLookup locationLookup = null;          LocationLookup locationLookup = null;
         FindStationsTask findStationsTask;  
86          StationsFetchedHandler stationsFetched = new StationsFetchedHandler();          StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
87                    
88          GeoPair location = new GeoPair();          //GeoPair location = new GeoPair();
89            
90          boolean isRunning = false;          boolean isLaunchedforShortcut;
91          List<StationBean> stations = new ArrayList<StationBean>();  
92            StationBean stations = new StationBean();
93                    
94          StationProvider stationProvider = ProviderFactory.getStationProvider();          StationProvider stationProvider = ProviderFactory.getStationProvider();
95                                    
96          StationListAdapter adapter = null;          StationListAdapter adapter = null;
97                    
98          FavoritesMenu contextMenu = new FavoritesMenu();          FavoritesMenu contextMenu = new FavoritesMenu();
99          IntSet favorites = new IntSet();          FavoritesHelper favorites;
100    
101          WelcomeScreen.ListType listType;          WelcomeScreen.ListType listType;
102          SharedPreferences prefs;                          
           
103          ///////////////////////////////////////////////////////////////////////////////////////////          ///////////////////////////////////////////////////////////////////////////////////////////
104          //Activity call backs          //Activity call backs
105                    
106          @SuppressWarnings("unchecked")  
107          @Override          @Override
108          public void onCreate(Bundle savedInstanceState) {          public void onCreate(Bundle savedInstanceState) {
109                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
110                  setContentView(R.layout.stationlist);                  setContentView(R.layout.stationlist);
111    
112                    favorites = new FavoritesHelper(this);
113                                    
114                    listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");
115                                    
116                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this, (listType == ListType.ListNearest) );
117                  setListAdapter(adapter);                  setListAdapter(adapter);
118                                    
119                  ListView lv = getListView();                  ListView lv = getListView();
120                  lv.setOnCreateContextMenuListener(contextMenu);                  lv.setOnCreateContextMenuListener(contextMenu);
121                                    
122                  locationLookup = new LocationLookup(this, stationsFetched);                  locationLookup = new LocationLookup(this);
123                                    
   
                 prefs = getSharedPreferences("TrainStation", 0);  
                 String favoriteString = prefs.getString("favorites", "");  
                 if (! favoriteString.equals("") ) {  
                         favorites.fromString(favoriteString);  
                 }  
124                                    
                 listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");  
125                  setTitle();                  setTitle();
126                                    
127                    isLaunchedforShortcut = getIntent().getBooleanExtra("shortcut", false);
128                    
129                    ProviderFactory.purgeOldEntries(); //cleanup before fetching more data
130                    
131                    if (listType == ListType.ListSearch) {
132                            enableNamesearchField();
133                    }
134                    
135                  if (savedInstanceState == null) {                  if (savedInstanceState == null) {
136                    
                           
137                          switch (listType) {                          switch (listType) {
138                          case ListNearest:                          case ListNearest:
139                                  startLookup();                                  startNearestLookup();
140                                  break;                                  break;
141                          case ListSearch:                          case ListSearch:                                
142                                  this.showDialog(DLG_STATIONNAME);                                  // do nothing here
143                                  break;                                  break;
144                          case ListFavorites:                          case ListFavorites:
145                                  startFavoriteLookup();                                  startFavoriteLookup();
# Line 128  public class StationList extends ListAct Line 149  public class StationList extends ListAct
149                          }                          }
150                                                    
151                  } else {                  } else {
152                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");                          ((TextView)findViewById(R.id.stationsearch)).setText(  savedInstanceState.getString( "search") );
153                            
154                            stations = (StationBean) savedInstanceState.getSerializable("stations");
155                          adapter.setStations(stations);                          adapter.setStations(stations);
                         location = (GeoPair) savedInstanceState.getSerializable("location");  
156                  }                  }
157                                    
158          }          }
159            
160            
161    
162    
163    
164    
165            @Override
166            protected void onDestroy() {
167                    super.onDestroy();
168                    
169                    stationsFetched.removeMessages(0);
170                    
171                    
172                    if (locationLookup != null) {
173                            locationLookup.stopSearch();
174                    }
175            
176            }
177    
178            
179          protected void setTitle() {          protected void setTitle() {
180                  String dialogTitle = getResources().getString(app_name);                  String dialogTitle = getResources().getString(app_name);
181                  switch (listType) {                  switch (listType) {
# Line 151  public class StationList extends ListAct Line 193  public class StationList extends ListAct
193                  }                  }
194                    
195                  setTitle(dialogTitle);                  setTitle(dialogTitle);
196                    
197          }          }
198                    
199                    
200            public void enableNamesearchField() {
201                    final TextView stationSearch = (TextView) findViewById(R.id.stationsearch);
202                    stationSearch.setVisibility( View.VISIBLE );
203                    stationSearch.addTextChangedListener( new TextWatcher() {
204    
205                            @Override
206                            public void afterTextChanged(Editable s) {
207                                    if (s.length() > 0) {
208                                            startNameLookup( s.toString() );
209                                    } else {
210                                            stations = new StationBean();
211                                            getListView().invalidateViews();
212                                            adapter.setStations( stations );        
213                                    }
214                            }
215    
216                            @Override
217                            public void beforeTextChanged(CharSequence s, int start, int count, int after) {
218                            }
219    
220                            @Override
221                            public void onTextChanged(CharSequence s, int start, int before, int count) {
222                            }
223                            
224                    });
225                    
226                    
227            }
228                    
229    
230      @Override      @Override
231      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
232      {      {
233          if (dialog != null && dialog.isShowing())          if (dialog != null && dialog.isShowing())
234                  dialog.dismiss();                  dialog.dismiss();
235          outState.putSerializable("stations", (ArrayList<StationBean>) stations);          outState.putSerializable("stations", (StationBean) stations);
236          outState.putSerializable("location", location);          outState.putString("search", ((TextView)findViewById(R.id.stationsearch)).getText().toString() );
237                    
238      }      }
239                    
# Line 176  public class StationList extends ListAct Line 247  public class StationList extends ListAct
247                  item.setIcon(android.R.drawable.ic_menu_mapmode);                  item.setIcon(android.R.drawable.ic_menu_mapmode);
248                                    
249                  item = menu.add(0, OPTIONS_GPSINFO, 0, getString(stationlist_gpsinfo));                  item = menu.add(0, OPTIONS_GPSINFO, 0, getString(stationlist_gpsinfo));
250                  item.setIcon(android.R.drawable.ic_menu_mapmode);                                item.setIcon(android.R.drawable.ic_menu_info_details);
251                    boolean hasLoc = (locationLookup.getLocation() != null);
252                    item.setEnabled(hasLoc);
253                                    
254                  return true;                  return true;
255          }          }
256            
257    
258    
259    
260          @Override          @Override
261          public boolean onOptionsItemSelected(MenuItem item) {          public boolean onOptionsItemSelected(MenuItem item) {
262                  boolean retval = true;                  boolean retval = true;
263    
264                  //TODO: Cleanup  
265                  switch (item.getItemId()) {                  switch (item.getItemId()) {
266                  case OPTIONS_MAP:                  case OPTIONS_MAP:
267                                                    
268                            if ( stations == null || stations.entries == null || stations.entries.size() == 0 ) {
269                                    Toast.makeText(this, "No stations to show on map", Toast.LENGTH_SHORT).show(); //TODO: Translate
270                                    return true;
271                            }
272                            
273                          Intent intent = new Intent(this,StationMapView.class);                          Intent intent = new Intent(this,StationMapView.class);
274                                                    
275                          ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();                          ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
276                          for (StationBean st : stations ) {                          for (StationEntry st : stations.entries ) {
277                                  stationPoints.add( new GeoPair(st.getLatitude(), st.getLongitude(), st.getName()) );                                  stationPoints.add( new GeoPair(st.getLatitude(), st.getLongitude(), st.getName()) );
278                          }                          }
279                                                    
# Line 204  public class StationList extends ListAct Line 285  public class StationList extends ListAct
285                          Location loc = locationLookup.getLocation();                          Location loc = locationLookup.getLocation();
286                          StringBuffer message = new StringBuffer();                          StringBuffer message = new StringBuffer();
287                          message.append( getString(stationlist_locationinfo) ).append(":\n");                          message.append( getString(stationlist_locationinfo) ).append(":\n");
288                          if (loc != null) {                          
289                                  message.append( getString(stationlist_obtainedby) ).append( loc.getProvider() ).append("\n");                          message.append( getString(stationlist_obtainedby) ).append( loc.getProvider() ).append("\n");
290                                  message.append( getString(stationlist_accuracy) ).append( (int)loc.getAccuracy()).append("m\n");                          message.append( getString(stationlist_accuracy) ).append( (int)loc.getAccuracy()).append("m\n");
291                                  message.append( getString(stationlist_latitude) ).append( loc.getLatitude()).append("\n");                          message.append( getString(stationlist_latitude) ).append( (float)loc.getLatitude()).append("\n");
292                                  message.append( getString(stationlist_longitude) ).append( loc.getLongitude() ).append("\n");                          message.append( getString(stationlist_longitude) ).append( (float)loc.getLongitude() ).append("\n");
293                          } else {                                                  
                                 message.append( getString(stationlist_nolocation) );  
                         }                        
294                                                    
295                          MessageBox.showMessage(this, message.toString());                          MessageBox.showMessage(this, message.toString(), false);
296                          break;                          break;
297                  default:                  default:
298                          retval = super.onOptionsItemSelected(item);                          retval = super.onOptionsItemSelected(item);
# Line 256  public class StationList extends ListAct Line 335  public class StationList extends ListAct
335                          dlg.setMessage( getString(stationlist_waitforlocation) );                          dlg.setMessage( getString(stationlist_waitforlocation) );
336                          dlg.setCancelable(false);                          dlg.setCancelable(false);
337                          return dlg;                                              return dlg;                    
                 case DLG_STATIONNAME:  
                         LayoutInflater factory = LayoutInflater.from(this);  
                         final View rootView = factory.inflate(R.layout.textinput, null);  
                           
                           
                         AlertDialog.Builder builder = new AlertDialog.Builder(this);  
                           
                         builder.setTitle( getString(stationlist_stationsearch) );  
                         builder.setView(rootView);  
                         builder.setCancelable(true);  
                         builder.setPositiveButton( getString(generic_search), new DialogInterface.OnClickListener() {  
                                 public void onClick(DialogInterface dialog, int which) {  
                                         EditText et = (EditText) rootView.findViewById(R.id.EditText);  
                                         dialog.dismiss();  
                                         if (et.getText().toString().length() >= 2) {  
                                                 startNameSearch(et.getText().toString());  
                                         } else {  
                                                 showMessageAndClose( getString(stationlist_twocharmin) );  
                                         }  
                                 }  
                         });  
                         builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {  
                                 public void onClick(DialogInterface dialog, int which) {  
                                         dialog.dismiss();  
                                         StationList.this.finish(); // Close this Activity  
                                 }  
                         });                      
                         return builder.create();  
338                                                    
339                  default:                  default:
340                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
# Line 310  public class StationList extends ListAct Line 361  public class StationList extends ListAct
361          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
362                  super.onListItemClick(l, v, position, id);                  super.onListItemClick(l, v, position, id);
363                                                                    
364                  StationBean station = stations.get(position);                  StationEntry station = stations.entries.get(position);
365                                    
366                  Intent intent = new Intent(this, DepartureList.class);                  if (isLaunchedforShortcut == true) {
367                  intent.putExtra("stationbean", station);                          Intent i = new Intent();
368                  startActivity(intent);                          i.putExtra("station", station);
369                            setResult(Activity.RESULT_OK, i);
370                            finish();
371                    } else {                
372                            Intent intent = new Intent(this, DepartureList.class);
373                            intent.putExtra("stationbean", station);
374                            startActivity(intent);
375                    }
376          }          }
377    
378          /////////////////////////////////////////////////////////////          /////////////////////////////////////////////////////////////
379          //          //
380    
381          public void startLookup() {          public void startNearestLookup() {
                 isRunning = true;                
382                  dialogMessage = getString( stationlist_waitforlocation );                  dialogMessage = getString( stationlist_waitforlocation );
383                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
384                                    
385                  locationLookup.locateStations();                  locationLookup.locateStations();
386                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);                  stationsFetched.sendEmptyMessageDelayed(0, 500);
387          }          }
388                    
389          void startNameSearch(String name) {          void startNameLookup(String name) {
                 dialogMessage = getString( stationlist_findbyname );  
                 showDialog(DLG_PROGRESS);  
   
                 findStationsTask = new FindStationsTask();  
                 findStationsTask.searchByName(name, locationLookup.getLocation());  
                 findStationsTask.execute();  
390                                    
391                    stations = stationProvider.lookupStationsByName(name);
392                    getListView().invalidateViews();
393                    adapter.setStations( stations );                                
394          }          }
395                    
396          public void startFavoriteLookup() {          public void startFavoriteLookup() {
397                                    
398                  if (favorites.size() > 0) {                  if (favorites.getSize() > 0) {
399                          dialogMessage = getString( stationlist_loadfavorites );                          
400                          showDialog(DLG_PROGRESS);                          stations = stationProvider.lookupStationsByIds( favorites.getString() );
401                            getListView().invalidateViews();
402                          findStationsTask = new FindStationsTask();                          adapter.setStations( stations );                
403                          findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());                          
404                          findStationsTask.execute();                          
405                  } else {                  } else {
406                          showMessageAndClose( getString( stationlist_nofavorites ) );                          showMessageAndClose( getString( stationlist_nofavorites ) );
407                  }                  }
# Line 355  public class StationList extends ListAct Line 409  public class StationList extends ListAct
409    
410    
411                    
412          void startLocatorTask()          void startNearestLookupPhase2()
413          {          {      
414                  dialogMessage = getString( stationlist_findingnearby );                  stations = stationProvider.lookupStationsByLocation( locationLookup.getLocation() );
415                  showDialog(DLG_PROGRESS);                  getListView().invalidateViews();
416                                    adapter.setStations( stations );
                 findStationsTask = new FindStationsTask();  
                 findStationsTask.searchByLocation( locationLookup.getLocation() );  
                 findStationsTask.execute();      
417          }          }
           
   
         /* TODO: Remove this no longer needed function  
         String lookupAddress(double latitude, double longitude) {  
                   
                 Geocoder coder = new Geocoder(this, new Locale("da"));  
                 StringBuilder sb = new StringBuilder();  
                 Log.i("lookupaddr", "" + latitude + "/" + longitude);  
                 try {  
                         List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);  
                         Address addr = addressList.get(0);  
                           
                           
                         int max = addr.getMaxAddressLineIndex();  
                         for (int i=0; i<max; i++) {  
                                 if (i>0)  
                                         sb.append(", ");  
                                   
                                 sb.append(addr.getAddressLine(i));  
                         }  
                           
                           
                 } catch (Exception e) {  
                         Log.e("DepartureList", "geocoder failed", e);  
                 }  
418                                    
                 return sb.toString();  
         }*/  
           
419                    
420          ////////////////////////////////////////////////////////////////////////////          ////////////////////////////////////////////////////////////////////////////
421          // Inner classes          // Inner classes
# Line 401  public class StationList extends ListAct Line 424  public class StationList extends ListAct
424                  @Override                  @Override
425                  public void handleMessage(Message msg) {                  public void handleMessage(Message msg) {
426    
427                          switch (msg.what) {                          LocationLookup.LookupStates state = locationLookup.getState();
428    
429    
430                            switch (state) {
431                          case GOTLOCATION:                          case GOTLOCATION:
432                                  dismissDialog(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);
433                                    
434                                  startLocatorTask();                                  startNearestLookupPhase2();
435                                  location = GeoPair.fromLocation( locationLookup.getLocation() );  
436                                                                    return;
                                 break;  
437    
438                          case NOPROVIDER:                          case NOPROVIDER:
439                                  dismissDialog(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);
440                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider) );                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider), true );
441                                  break;                                  //StationList.this.finish();
442                          case LOCATIONFIXTIMEOUT:                                                                  return;
443                                  if (isRunning) {                          case IDLE:
444                                          locationLookup.stopSearch();                                  Log.e("TrainInfo", "How did this happen ???");
445                                          if (locationLookup.hasLocation()) {                                  dismissDialog(DLG_PROGRESS); // how did we get here ??
446                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );                                  return;
447                                          } else {                                                                                  
                                                 dismissDialog(DLG_PROGRESS);  
                                                   
                                                 AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                  
                                                 builder.setMessage(  getString( stationlist_gpstimeout) );  
                                                 builder.setCancelable(true);  
                                                 builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {  
                                                         public void onClick(DialogInterface dialog, int id) {  
                                                                 dialog.dismiss();  
                                                                 startLookup();  
                                                                   
                                                         }  
                                                 });  
                                                 builder.setNegativeButton( getString(generic_cancel), new DialogInterface.OnClickListener() {  
                                                         public void onClick(DialogInterface dialog, int id) {  
                                                                 dialog.dismiss();  
                                                         }                                                        
                                                 });                                                                                              
                                                 builder.show();  
   
                                         }  
                                 }  
                                 break;  
448                          }                          }
                         isRunning = false;  
                 }  
         };  
449    
           
         class FindStationsTask extends AsyncTask<Void,Void,Void> {  
                   
                 LookupMethod method = LookupMethod.MethodNone;  
                 boolean success;  
                 String name;  
                 Location loc;  
                 String ids;  
                   
                 public void searchByName(String n, Location l) {  
                           
                         method = LookupMethod.ByName;  
                         loc = l;  
                         name = n;  
                 }  
                   
                 public void searchByLocation(Location l) {  
                         method = LookupMethod.ByLocation;  
                         loc = l;  
                 }  
                   
                 public void searchByIds(String id, Location l) {  
                           
                         method = LookupMethod.ByList;  
                         loc = l;  
                         ids = id;  
                 }  
                   
                 @Override  
                 protected void onPreExecute() {  
450    
                         if (method.equals(LookupMethod.MethodNone))  
                                 throw new RuntimeException("Method not set");  
                         super.onPreExecute();  
                 }  
                   
                 @Override  
                 protected Void doInBackground(Void... params) {  
451    
452                          switch (method) {                          if (locationLookup.elapsedTime() >=  GPS_TIMEOUT_MS) {
453                          case ByLocation:                                  dismissDialog(DLG_PROGRESS);
                                 success = stationProvider.lookupStations(loc);  
                                 break;  
                         case ByName:  
                                 success = stationProvider.lookupStationsByName(name);  
                                 break;  
                         case ByList:  
                                 success = stationProvider.lookupStationsByIds(ids);  
                                 break;  
                         default:  
                                 success = false; // not possible          
                         }  
                           
                           
                         Location dummy = new Location("gps");  
                         List<StationBean> stations = stationProvider.getStations();  
                           
                         for (StationBean station : stations) {  
                                                                   
                                 if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {  
                                         if (loc != null) { //only do the distance calc if we have a location  
                                                 dummy.setLatitude(station.getLatitude());  
                                                 dummy.setLongitude(station.getLongitude());  
                                                 station.setDistance( (int)loc.distanceTo(dummy) );  
                                         } else {  
                                                 station.setDistance(0);  
                                         }  
                                 }  
454    
                         }                                                
                           
                         return null;  
                 }  
455    
456                  @Override                                  locationLookup.stopSearch();
457                  protected void onPostExecute(Void result) {  
458                          super.onPostExecute(result);                                  if (locationLookup.hasLocation()) {
459                          dialog.dismiss();                                          startNearestLookupPhase2();
460                                                            } else {                                                
461                                                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
462                          if (success) {                                                                    builder.setMessage(  getString( stationlist_gpstimeout) );
463                                  if (stationProvider.getStations().size() == 0)                                          builder.setCancelable(true);
464                                          MessageBox.showMessage(StationList.this, getString(stationlist_nostations) ); // this should not be possible !?!                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
465                                  stations = stationProvider.getStations();                                                  public void onClick(DialogInterface dialog, int id) {
466                                  adapter.setStations( stations );                                                                                          dialog.dismiss();
467                                                                                            startNearestLookup();
468                          } else { //communication or parse errors  
469                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                                                                  }
470                                  builder.setMessage(getString(stationlist_nearbyerror));                                                                  });
471                                  builder.setCancelable(true);                                          builder.setNegativeButton( getString(generic_cancel), new DialogInterface.OnClickListener() {
472                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                                  public void onClick(DialogInterface dialog, int id) {
473                                          public void onClick(DialogInterface dialog, int id) {                                                          dialog.dismiss();
474                                                  dialog.dismiss();                                                          StationList.this.finish(); // Close this Activity
475                                                                                                    }                                                      
476                                                  stationsFetched.post( new Runnable() {                                          });
477                                                          @Override                                          builder.show();
478                                                          public void run() {  
479                                                                  startLocatorTask();                                                                                              }
480                                                          }                          } else {
481                                                  });                                  if (locationLookup.hasGps()) {
482                                          }                                          int count = locationLookup.getSatCount();
483                                  });                                          String dialogMessage = getString( stationlist_waitforlocation ) + "\n" + getString( stationlist_satellitecount ) + ": " + count;
484                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {                                          dialog.setMessage( dialogMessage );
485                                          public void onClick(DialogInterface dialog, int id) {                                  }
486                                                  dialog.dismiss();                                  this.sendEmptyMessageDelayed(0, 500);
                                         }                                                        
                                 });                                                                                              
                                 builder.show();                          
487                          }                          }
488                            
489                  }                  }
490          }          }
491            
492    
493    
494                    
495          class FavoritesMenu implements OnCreateContextMenuListener {          class FavoritesMenu implements OnCreateContextMenuListener {
496                  private final static int FAVORITES_ADD = 9001;                  private final static int FAVORITES_ADD = 9001;
# Line 572  public class StationList extends ListAct Line 504  public class StationList extends ListAct
504                                                                                                    
505                          AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;                          AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
506                          selectedPosition = info.position;                          selectedPosition = info.position;
507                          int stationID = stations.get(selectedPosition).getId();                          int stationID = stations.entries.get(selectedPosition).getId();
508    
509                          if (!favorites.contains(stationID)) {                          if (!favorites.hasFavorite(stationID)) {
510                                  menu.add(0, FAVORITES_ADD, 0, getString(stationlist_addfavorite) );                                  menu.add(0, FAVORITES_ADD, 0, getString(stationlist_addfavorite) );
511                          } else {                          } else {
512                                  menu.add(0, FAVORITES_REMOVE, 0, getString(stationlist_removefavorite) );                                  menu.add(0, FAVORITES_REMOVE, 0, getString(stationlist_removefavorite) );
# Line 583  public class StationList extends ListAct Line 515  public class StationList extends ListAct
515                  }                  }
516                                    
517                  public void onContextItemSelected(MenuItem item) {                  public void onContextItemSelected(MenuItem item) {
518                          StationBean sb = stations.get(selectedPosition);                          StationEntry sb = stations.entries.get(selectedPosition);
519                                                    
520                          int stationID = sb.getId();                          int stationID = sb.getId();
521                          if (item.getItemId() == FAVORITES_ADD) {                          if (item.getItemId() == FAVORITES_ADD) {
522                                  favorites.add(stationID);                                  favorites.addFavorite(stationID);
523                                  Toast.makeText(StationList.this, getString(stationlist_stationadded), Toast.LENGTH_SHORT).show();                                  Toast.makeText(StationList.this, getString(stationlist_stationadded), Toast.LENGTH_SHORT).show();
524                          } else {                          } else {
525                                                                    
526                                  favorites.remove(stationID);                                  favorites.removeFavorite(stationID);
527                                  Toast.makeText(StationList.this, getString(stationlist_stationremoved), Toast.LENGTH_SHORT).show();                                  Toast.makeText(StationList.this, getString(stationlist_stationremoved), Toast.LENGTH_SHORT).show();
528                                                                    
529                                                                    
530                                  if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {                                  if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
531                                          stations.remove(selectedPosition);                                          stations.entries.remove(selectedPosition);
532                                          adapter.notifyDataSetChanged();                                          adapter.notifyDataSetChanged();
533                                  }                                  }
534                          }                          }
                         Editor ed = prefs.edit();  
                         ed.putString("favorites", favorites.toString());  
                         ed.commit();  
535                  }                  }
536          }          }
 }  
537    }

Legend:
Removed from v.563  
changed lines
  Added in v.1709

  ViewVC Help
Powered by ViewVC 1.1.20