/[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 374 by torben, Wed Sep 30 20:38:47 2009 UTC revision 546 by torben, Fri Jan 22 11:28:56 2010 UTC
# Line 2  package dk.thoerup.traininfo; Line 2  package dk.thoerup.traininfo;
2    
3  import java.util.ArrayList;  import java.util.ArrayList;
4  import java.util.List;  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;
# Line 10  import android.app.ListActivity; Line 10  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;  import android.content.SharedPreferences;
14  import android.location.Geocoder;  import android.content.SharedPreferences.Editor;
15  import android.location.Location;  import android.location.Location;
16  import android.os.AsyncTask;  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.ContextMenu;
22    import android.view.LayoutInflater;
23  import android.view.Menu;  import android.view.Menu;
24  import android.view.MenuItem;  import android.view.MenuItem;
25  import android.view.View;  import android.view.View;
26    import android.view.ContextMenu.ContextMenuInfo;
27    import android.view.View.OnCreateContextMenuListener;
28    import android.widget.AdapterView;
29    import android.widget.EditText;
30  import android.widget.ListView;  import android.widget.ListView;
31    import android.widget.Toast;
   
32  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
33  import dk.thoerup.traininfo.provider.StationProvider;  import dk.thoerup.traininfo.provider.StationProvider;
34  import dk.thoerup.traininfo.stationmap.GeoPair;  import dk.thoerup.traininfo.stationmap.GeoPair;
35  import dk.thoerup.traininfo.stationmap.StationMapView;  import dk.thoerup.traininfo.stationmap.StationMapView;
36    import dk.thoerup.traininfo.util.IntSet;
37  import dk.thoerup.traininfo.util.MessageBox;  import dk.thoerup.traininfo.util.MessageBox;
38    
39  public class StationList extends ListActivity  {  public class StationList extends ListActivity  {
# Line 36  public class StationList extends ListAct Line 42  public class StationList extends ListAct
42          public static final int NOPROVIDER = 1003;          public static final int NOPROVIDER = 1003;
43          public static final int LOCATIONFIXTIMEOUT = 1004;          public static final int LOCATIONFIXTIMEOUT = 1004;
44                    
45          public static final int OPTIONS_MAP = 2001;          public static final int OPTIONS_MAP = 2003;
46          public static final int OPTIONS_ABOUT = 2002;          public static final int OPTIONS_GPSINFO = 2004;
47    
48                    
49          public static final int DLG_PROGRESS = 1001;  
50            
51            public static final int DLG_PROGRESS = 3001;
52            public static final int DLG_STATIONNAME = 3002;
53            
54            static enum LookupMethod {
55                    ByLocation,
56                    ByName,
57                    ByList,
58                    MethodNone
59            }
60            
61                    
         /** Called when the activity is first created. */  
62          String dialogMessage = "";          String dialogMessage = "";
63          ProgressDialog dialog;          ProgressDialog dialog;
64          LocationLookup locator = null;          LocationLookup locationLookup = null;
65          LocatorTask locatorTask;          FindStationsTask findStationsTask;
66            StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
67                    
68          GeoPair location = new GeoPair();          GeoPair location = new GeoPair();
69                    
# Line 54  public class StationList extends ListAct Line 71  public class StationList extends ListAct
71          List<StationBean> stations = new ArrayList<StationBean>();          List<StationBean> stations = new ArrayList<StationBean>();
72                    
73          StationProvider stationProvider = ProviderFactory.getStationProvider();          StationProvider stationProvider = ProviderFactory.getStationProvider();
74                    
75            StationListAdapter adapter = null;
76                    
77            FavoritesMenu contextMenu = new FavoritesMenu();
78            IntSet favorites = new IntSet();
79    
80            WelcomeScreen.ListType listType;
81            SharedPreferences prefs;
82            
83            ///////////////////////////////////////////////////////////////////////////////////////////
84            //Activity call backs
85                    
         StationListAdapter adapter = null;  
86          @SuppressWarnings("unchecked")          @SuppressWarnings("unchecked")
87          @Override          @Override
88          public void onCreate(Bundle savedInstanceState) {          public void onCreate(Bundle savedInstanceState) {
89                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
90                  setContentView(R.layout.main);                  setContentView(R.layout.stationlist);
91                                    
92                                    
93                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this);
94                  setListAdapter(adapter);                  setListAdapter(adapter);
95                                    
96                  locator = new LocationLookup(this, stationsFetched);                  ListView lv = getListView();
97                    lv.setOnCreateContextMenuListener(contextMenu);
98                    
99                    locationLookup = new LocationLookup(this, stationsFetched);
100                    
101    
102                    prefs = getSharedPreferences("TrainStation", 0);
103                    String favoriteString = prefs.getString("favorites", "");
104                    if (! favoriteString.equals("") ) {
105                            favorites.fromString(favoriteString);
106                    }
107                    
108                    listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");
109                    setTitle();
110                    
111                  if (savedInstanceState == null) {                  if (savedInstanceState == null) {
112                          startLookup();  
113                            
114                            switch (listType) {
115                            case ListNearest:
116                                    startLookup();
117                                    break;
118                            case ListSearch:
119                                    this.showDialog(DLG_STATIONNAME);
120                                    break;
121                            case ListFavorites:
122                                    startFavoriteLookup();
123                                    break;
124                            default:
125                                    // Not possible !?!
126                            }
127                            
128                  } else {                  } else {
129                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
130                          adapter.setStations(stations);                          adapter.setStations(stations);
131                          location = (GeoPair) savedInstanceState.getSerializable("location");                          location = (GeoPair) savedInstanceState.getSerializable("location");
132                  }                  }
133                    
134          }          }
135            protected void setTitle() {
136                    String dialogTitle = getResources().getString(R.string.app_name);
137                    switch (listType) {
138                    case ListNearest:
139                            dialogTitle += " - Nearby stations";
140                            break;
141                    case ListSearch:
142                            dialogTitle += " - Search";
143                            break;
144                    case ListFavorites:
145                            dialogTitle += " - Favorites";
146                            break;
147                    default:
148                            dialogTitle = "";//not possible                                
149                    }
150            
151                    setTitle(dialogTitle);
152            }
153            
154            
155    
156    
157      @Override      @Override
# Line 85  public class StationList extends ListAct Line 161  public class StationList extends ListAct
161                  dialog.dismiss();                  dialog.dismiss();
162          outState.putSerializable("stations", (ArrayList<StationBean>) stations);          outState.putSerializable("stations", (ArrayList<StationBean>) stations);
163          outState.putSerializable("location", location);          outState.putSerializable("location", location);
164            
165      }      }
166                    
167                    
168    
169          @Override          @Override
170          public boolean onCreateOptionsMenu(Menu menu) {          public boolean onCreateOptionsMenu(Menu menu) {
171                  menu.add(0, OPTIONS_MAP, 0, "Show station map");                  MenuItem item;
172                  menu.add(0, OPTIONS_ABOUT, 0, "About");                                  
173                    item = menu.add(0, OPTIONS_MAP, 0, "Station map");
174                    item.setIcon(android.R.drawable.ic_menu_mapmode);
175                    
176                    item = menu.add(0, OPTIONS_GPSINFO, 0, "GPS Info");
177                    item.setIcon(android.R.drawable.ic_menu_mapmode);              
178                                    
179                  return true;                  return true;
180          }          }
181    
182          @Override          @Override
183          public boolean onOptionsItemSelected(MenuItem item) {          public boolean onOptionsItemSelected(MenuItem item) {
184                  boolean retval;                  boolean retval = true;
185                    
186                    //TODO: Cleanup
187                  switch (item.getItemId()) {                  switch (item.getItemId()) {
188                  case OPTIONS_MAP:                  case OPTIONS_MAP:
189                                                    
190                          Intent intent = new Intent(this,StationMapView.class);                          Intent intent = new Intent(this,StationMapView.class);
                         intent.putExtra("userlocation", location );  
191                                                    
192                          ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();                          ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
193                          for (StationBean st : stations ) {                          for (StationBean st : stations ) {
# Line 115  public class StationList extends ListAct Line 197  public class StationList extends ListAct
197                          intent.putExtra("stations", stationPoints);                          intent.putExtra("stations", stationPoints);
198                                                    
199                          startActivity(intent);                          startActivity(intent);
                         retval = true;  
200                          break;                          break;
201                  case OPTIONS_ABOUT:                  case OPTIONS_GPSINFO:
202                          String ver = this.getResources().getString(R.string.app_version);                          Location loc = locationLookup.getLocation();
                           
203                          StringBuffer message = new StringBuffer();                          StringBuffer message = new StringBuffer();
204                          message.append("TrainInfo DK v").append(ver).append("\n");                          message.append("Location info:\n");
205                          message.append("By Torben Nielsen\n");                          message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");
206                            message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");
207                            message.append("-Latitude: ").append(loc != null ? loc.getLatitude() : "-").append("\n");
208                            message.append("-Longitude: ").append(loc != null ? loc.getLongitude() : "-").append("\n");
209                          MessageBox.showMessage(this, message.toString());                          MessageBox.showMessage(this, message.toString());
                         retval = true;  
210                          break;                          break;
211                  default:                  default:
212                          retval = super.onOptionsItemSelected(item);                          retval = super.onOptionsItemSelected(item);
# Line 133  public class StationList extends ListAct Line 214  public class StationList extends ListAct
214                                    
215                  return retval;                  return retval;
216          }          }
217            
218            
219    
220            @Override
221            public boolean onContextItemSelected(MenuItem item) {
222                    contextMenu.onContextItemSelected(item);
223                    return true;
224    
225    
226            }
227    
228    
229    
230    
231          @Override          @Override
232          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
# Line 142  public class StationList extends ListAct Line 236  public class StationList extends ListAct
236                          dlg.setMessage("Wait for location fix");                          dlg.setMessage("Wait for location fix");
237                          dlg.setCancelable(false);                          dlg.setCancelable(false);
238                          return dlg;                                              return dlg;                    
239                    case DLG_STATIONNAME:
240                            LayoutInflater factory = LayoutInflater.from(this);
241                            final View rootView = factory.inflate(R.layout.textinput, null);
242                            
243                            
244                            AlertDialog.Builder builder = new AlertDialog.Builder(this);
245                            
246                            builder.setTitle("Station search");
247                            builder.setView(rootView);
248                            builder.setCancelable(true);
249                            builder.setPositiveButton("Search", new DialogInterface.OnClickListener() {
250                                    public void onClick(DialogInterface dialog, int which) {
251                                            EditText et = (EditText) rootView.findViewById(R.id.EditText);
252                                            dialog.dismiss();
253                                            if (et.getText().toString().length() >= 2) {
254                                                    startNameSearch(et.getText().toString());
255                                            } else {
256                                                    MessageBox.showMessage(StationList.this, "Two characters minimum" );
257                                            }
258                                    }
259                            });
260                            builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
261                                    public void onClick(DialogInterface dialog, int which) {
262                                            dialog.dismiss();
263                                    }
264                            });                    
265                            return builder.create();
266                            
267                  default:                  default:
268                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
269                  }                  }
# Line 149  public class StationList extends ListAct Line 271  public class StationList extends ListAct
271          }          }
272                    
273                    
   
274          @Override          @Override
275          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
276                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
# Line 163  public class StationList extends ListAct Line 284  public class StationList extends ListAct
284                          break;                          break;
285                  }                  }
286          }          }
287            
288            @Override
289            protected void onListItemClick(ListView l, View v, int position, long id) {
290                    super.onListItemClick(l, v, position, id);
291                                    
292                    StationBean station = stations.get(position);
293    
294                    double latitude = station.getLatitude();
295                    double longitude = station.getLongitude();
296    
297    
298                    
299                    Intent intent = new Intent(this, DepartureList.class);
300                    intent.putExtra("name", station.getName());
301                    intent.putExtra("distance", station.getDistance());
302                    intent.putExtra("latitude", latitude);
303                    intent.putExtra("longitude", longitude);
304                    intent.putExtra("stationid", station.getId());
305                    intent.putExtra("address", station.getAddress());
306                    startActivity(intent);
307            }
308    
309            /////////////////////////////////////////////////////////////
310            //
311    
312          public void startLookup() {          public void startLookup() {
313                  isRunning = true;                  isRunning = true;
314                    dialogMessage = "Wait for location fix";
315                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
316                                    
317                  locator.locateStations();                  locationLookup.locateStations();
318                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
319          }          }
320            
321            void startNameSearch(String name) {
322                    dialogMessage = "Finding stations by name";
323                    showDialog(DLG_PROGRESS);
324    
325                    findStationsTask = new FindStationsTask();
326                    findStationsTask.searchByName(name, locationLookup.getLocation());
327                    findStationsTask.execute();
328                    
329            }
330            
331            public void startFavoriteLookup() {
332                    
333                    if (favorites.size() > 0) {
334                            dialogMessage = "Loading favorites";
335                            showDialog(DLG_PROGRESS);
336    
337                            findStationsTask = new FindStationsTask();
338                            findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
339                            findStationsTask.execute();
340                    } else {
341                            MessageBox.showMessage(this, "Favorite list is empty");
342                    }
343            }
344    
345    
346            
347            void startLocatorTask()
348            {
349                    dialogMessage = "Finding nearby stations";
350                    showDialog(DLG_PROGRESS);
351                    
352                    findStationsTask = new FindStationsTask();
353                    findStationsTask.searchByLocation( locationLookup.getLocation() );
354                    findStationsTask.execute();    
355            }
356            
357    
358          Handler stationsFetched = new Handler() {          /* TODO: Remove this no longer needed function
359            String lookupAddress(double latitude, double longitude) {
360                    
361                    Geocoder coder = new Geocoder(this, new Locale("da"));
362                    StringBuilder sb = new StringBuilder();
363                    Log.i("lookupaddr", "" + latitude + "/" + longitude);
364                    try {
365                            List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);
366                            Address addr = addressList.get(0);
367                            
368                            
369                            int max = addr.getMaxAddressLineIndex();
370                            for (int i=0; i<max; i++) {
371                                    if (i>0)
372                                            sb.append(", ");
373                                    
374                                    sb.append(addr.getAddressLine(i));
375                            }
376                            
377                            
378                    } catch (Exception e) {
379                            Log.e("DepartureList", "geocoder failed", e);
380                    }
381                    
382                    return sb.toString();
383            }*/
384            
385            
386            ////////////////////////////////////////////////////////////////////////////
387            // Inner classes
388    
389            class StationsFetchedHandler extends Handler {
390                  @Override                  @Override
391                  public void handleMessage(Message msg) {                  public void handleMessage(Message msg) {
392    
# Line 182  public class StationList extends ListAct Line 395  public class StationList extends ListAct
395                                  dismissDialog(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);
396                                                                    
397                                  startLocatorTask();                                  startLocatorTask();
398                                  location = GeoPair.fromLocation( locator.getLocation() );                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
399                                                                    
400                                  break;                                  break;
401    
# Line 192  public class StationList extends ListAct Line 405  public class StationList extends ListAct
405                                  break;                                  break;
406                          case LOCATIONFIXTIMEOUT:                                                          case LOCATIONFIXTIMEOUT:                                
407                                  if (isRunning) {                                  if (isRunning) {
408                                          locator.stopSearch();                                          locationLookup.stopSearch();
409                                          if (locator.hasLocation()) {                                          if (locationLookup.hasLocation()) {
410                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );
411                                          } else {                                                                                          } else {                                                
412                                                  dismissDialog(DLG_PROGRESS);                                                  dismissDialog(DLG_PROGRESS);
413                                                                                                    
414                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
415                                                  builder.setMessage("GPS fix timed out");                                                  builder.setMessage("Location fix timed out");
416                                                  builder.setCancelable(true);                                                  builder.setCancelable(true);
417                                                  builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {                                                  builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
418                                                          public void onClick(DialogInterface dialog, int id) {                                                          public void onClick(DialogInterface dialog, int id) {
# Line 222  public class StationList extends ListAct Line 435  public class StationList extends ListAct
435                          isRunning = false;                          isRunning = false;
436                  }                  }
437          };          };
438    
439                    
440          void startLocatorTask()          class FindStationsTask extends AsyncTask<Void,Void,Void> {
         {  
                 dialogMessage = "Finding nearby stations";  
                 showDialog(DLG_PROGRESS);  
441                                    
442                  locatorTask = new LocatorTask();                  LookupMethod method = LookupMethod.MethodNone;
443                  locatorTask.execute();                    boolean success;
444          }                  String name;
445                            Location loc;
446          @Override                  String ids;
447          protected void onListItemClick(ListView l, View v, int position, long id) {                  
448                  super.onListItemClick(l, v, position, id);                  public void searchByName(String n, Location l) {
449                                                            
450                  StationBean station = stations.get(position);                          method = LookupMethod.ByName;
451                            loc = l;
452                  double latitude = station.getLatitude();                          name = n;
453                  double longitude = station.getLongitude();                  }
   
   
454                                    
455                  Intent intent = new Intent(this, DepartureList.class);                  public void searchByLocation(Location l) {
456                  intent.putExtra("name", station.getName());                          method = LookupMethod.ByLocation;
457                  intent.putExtra("distance", station.getDistance());                          loc = l;
458                  intent.putExtra("latitude", latitude);                  }
                 intent.putExtra("longitude", longitude);  
                 intent.putExtra("stationid", station.getId());  
                 intent.putExtra("address", station.getAddress());  
                 startActivity(intent);  
         }  
   
         String lookupAddress(double latitude, double longitude) {  
459                                    
460                  Geocoder coder = new Geocoder(this, new Locale("da"));                  public void searchByIds(String id, Location l) {
                 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));  
                         }  
                           
461                                                    
462                  } catch (Exception e) {                          method = LookupMethod.ByList;
463                          Log.e("DepartureList", "geocoder failed", e);                          loc = l;
464                            ids = id;
465                  }                  }
466                                    
                 return sb.toString();  
         }  
           
         class LocatorTask extends AsyncTask<Void,Void,Void> {  
                 boolean success;  
467                  @Override                  @Override
468                  protected void onPreExecute() {                  protected void onPreExecute() {
469    
470                            if (method.equals(LookupMethod.MethodNone))
471                                    throw new RuntimeException("Method not set");
472                          super.onPreExecute();                          super.onPreExecute();
473                  }                  }
474                                    
475                  @Override                  @Override
476                  protected Void doInBackground(Void... params) {                  protected Void doInBackground(Void... params) {
477                          Location loc = locator.getLocation();  
478                          success = stationProvider.lookupStations(loc);                          switch (method) {
479                            case ByLocation:
480                                    success = stationProvider.lookupStations(loc);
481                                    break;
482                            case ByName:
483                                    success = stationProvider.lookupStationsByName(name);
484                                    break;
485                            case ByList:
486                                    success = stationProvider.lookupStationsByIds(ids);
487                                    break;
488                            default:
489                                    success = false; // not possible        
490                            }
491                                                    
492                                                    
493                            Location dummy = new Location("gps");
494                          List<StationBean> stations = stationProvider.getStations();                          List<StationBean> stations = stationProvider.getStations();
495                          for (StationBean station : stations) {                          
496                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());                          for (StationBean station : stations) {
497                                  station.setAddress(addr);                                                                  
498                          }                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
499                                            if (loc != null) { //only do the distance calc if we have a location
500                                                    dummy.setLatitude(station.getLatitude());
501                                                    dummy.setLongitude(station.getLongitude());
502                                                    station.setDistance( (int)loc.distanceTo(dummy) );
503                                            } else {
504                                                    station.setDistance(0);
505                                            }
506                                    }
507    
508                            }                                              
509                                                    
510                          return null;                          return null;
511                  }                  }
# Line 307  public class StationList extends ListAct Line 515  public class StationList extends ListAct
515                          super.onPostExecute(result);                          super.onPostExecute(result);
516                          dialog.dismiss();                          dialog.dismiss();
517                                                    
518                            
519                          if (success) {                                                    if (success) {                          
520                                  if (stationProvider.getStations().size() == 0)                                  if (stationProvider.getStations().size() == 0)
521                                          MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!                                          MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
# Line 338  public class StationList extends ListAct Line 547  public class StationList extends ListAct
547                          }                          }
548                  }                  }
549          }          }
550            
551            
552            class FavoritesMenu implements OnCreateContextMenuListener {
553                    private final static int FAVORITES_ADD = 9001;
554                    private final static int FAVORITES_REMOVE = 9002;
555                    
556                    private int selectedPosition;
557                    
558                    
559                    @Override
560                    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
561                                                    
562                            AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
563                            selectedPosition = info.position;
564                            int stationID = stations.get(selectedPosition).getId();
565    
566                            if (!favorites.contains(stationID)) {
567                                    menu.add(0, FAVORITES_ADD, 0, "Add to favorites");
568                            } else {
569                                    menu.add(0, FAVORITES_REMOVE, 0, "Remove from favorites");
570                            }
571                            
572                    }
573                    
574                    public void onContextItemSelected(MenuItem item) {
575                            StationBean sb = stations.get(selectedPosition);
576                            
577                            int stationID = sb.getId();
578                            if (item.getItemId() == FAVORITES_ADD) {
579                                    favorites.add(stationID);
580                                    Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
581                            } else {
582                                    
583                                    favorites.remove(stationID);
584                                    Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
585                                    
586                                    
587                                    if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
588                                            stations.remove(selectedPosition);
589                                            adapter.notifyDataSetChanged();
590                                    }
591                            }
592                            Editor ed = prefs.edit();
593                            ed.putString("favorites", favorites.toString());
594                            ed.commit();
595                    }
596            }
597  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.20