/[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 319 by torben, Fri Sep 11 12:24:53 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/StationList.java revision 556 by torben, Wed Jan 27 06:14:00 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;
 import java.util.Locale;  
5    
6    
7    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;
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;
24    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;
35    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 TrainInfoList extends ListActivity  {  public class StationList extends ListActivity  {
40          public static final int GOTLOCATION = 1;          public static final int GOTLOCATION = 1001;
41          public static final int GOTSTATIONLIST = 2;          public static final int GOTSTATIONLIST = 1002;
42          public static final int NOPROVIDER = 3;          public static final int NOPROVIDER = 1003;
43          public static final int FIXTIMEOUT = 4;          public static final int LOCATIONFIXTIMEOUT = 1004;
         public static final int LOOKUPSTATIONFAILED = 5;  
44                    
45          public static final int DLG_PROGRESS = 1;          public static final int OPTIONS_MAP = 2003;
46            public static final int OPTIONS_GPSINFO = 2004;
47    
48                    
49          /** Called when the activity is first created. */  
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            
62            String dialogMessage = "";
63          ProgressDialog dialog;          ProgressDialog dialog;
64          LocationLookup locator = null;          LocationLookup locationLookup = null;
65          LocatorTask locatorTask = new LocatorTask();          FindStationsTask findStationsTask;
66            StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
67            
68            GeoPair location = new GeoPair();
69                    
70          boolean isRunning = false;          boolean isRunning = false;
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                                    
                 LocationLookup.removeMockLocation(this);  
                 //StationLocator.injectMockLocation(this);  
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");
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
158      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
159      {      {
160          if (dialog != null && dialog.isShowing())          if (dialog != null && dialog.isShowing())
161                  dialog.dismiss();                  dialog.dismiss();
162          outState.putSerializable("stations", (ArrayList<StationBean>) stations);          outState.putSerializable("stations", (ArrayList<StationBean>) stations);
163            outState.putSerializable("location", location);
164            
165      }      }
166                    
167                    
168    
169          @Override          @Override
170            public boolean onCreateOptionsMenu(Menu menu) {
171                    MenuItem item;
172                                    
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;
180            }
181    
182            @Override
183            public boolean onOptionsItemSelected(MenuItem item) {
184                    boolean retval = true;
185    
186                    //TODO: Cleanup
187                    switch (item.getItemId()) {
188                    case OPTIONS_MAP:
189                            
190                            Intent intent = new Intent(this,StationMapView.class);
191                            
192                            ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
193                            for (StationBean st : stations ) {
194                                    stationPoints.add( new GeoPair(st.getLatitude(), st.getLongitude(), st.getName()) );
195                            }
196                            
197                            intent.putExtra("stations", stationPoints);
198                            
199                            startActivity(intent);
200                            break;
201                    case OPTIONS_GPSINFO:
202                            Location loc = locationLookup.getLocation();
203                            StringBuffer message = new StringBuffer();
204                            message.append("Location info:\n");
205                            if (loc != null) {
206                                    message.append("-Obtained by: ").append( loc.getProvider() ).append("\n");
207                                    message.append("-Accuracy: ").append( (int)loc.getAccuracy()).append("m\n");
208                                    message.append("-Latitude: ").append( loc.getLatitude()).append("\n");
209                                    message.append("-Longitude: ").append( loc.getLongitude() ).append("\n");
210                            } else {
211                                    message.append(" - No location data!");
212                            }                      
213                            
214                            MessageBox.showMessage(this, message.toString());
215                            break;
216                    default:
217                            retval = super.onOptionsItemSelected(item);
218                    }
219                    
220                    return retval;
221            }
222            
223            
224    
225            @Override
226            public boolean onContextItemSelected(MenuItem item) {
227                    contextMenu.onContextItemSelected(item);
228                    return true;
229    
230    
231            }
232            
233            public void showMessageAndClose(String message) {
234                    AlertDialog.Builder builder = new AlertDialog.Builder(this);
235                    builder.setMessage(message)
236                    .setCancelable(false)
237                    .setPositiveButton("OK", new DialogInterface.OnClickListener() {
238                            public void onClick(DialogInterface dialog, int id) {
239                                    dialog.dismiss();
240                                    StationList.this.finish();
241                            }
242                    })
243                    .show();
244            }
245    
246    
247    
248    
249            @Override
250          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
251                  switch (id) {                  switch (id) {
252                  case DLG_PROGRESS:                  case DLG_PROGRESS:
253                          ProgressDialog dlg = new ProgressDialog(this);                          ProgressDialog dlg = new ProgressDialog(this);
254                          dlg.setMessage("Wait for location fix");                          dlg.setMessage("Wait for location fix");
255                          dlg.setCancelable(false);                          dlg.setCancelable(false);
256                          return dlg;                          return dlg;                    
257                    case DLG_STATIONNAME:
258                            LayoutInflater factory = LayoutInflater.from(this);
259                            final View rootView = factory.inflate(R.layout.textinput, null);
260                            
261                            
262                            AlertDialog.Builder builder = new AlertDialog.Builder(this);
263                            
264                            builder.setTitle("Station search");
265                            builder.setView(rootView);
266                            builder.setCancelable(true);
267                            builder.setPositiveButton("Search", new DialogInterface.OnClickListener() {
268                                    public void onClick(DialogInterface dialog, int which) {
269                                            EditText et = (EditText) rootView.findViewById(R.id.EditText);
270                                            dialog.dismiss();
271                                            if (et.getText().toString().length() >= 2) {
272                                                    startNameSearch(et.getText().toString());
273                                            } else {
274                                                    showMessageAndClose("Two characters minimum");
275                                            }
276                                    }
277                            });
278                            builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
279                                    public void onClick(DialogInterface dialog, int which) {
280                                            dialog.dismiss();
281                                            StationList.this.finish(); // Close this Activity
282                                    }
283                            });                    
284                            return builder.create();
285                            
286                  default:                  default:
287                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
288                  }                  }
# Line 89  public class TrainInfoList extends ListA Line 290  public class TrainInfoList extends ListA
290          }          }
291                    
292                    
   
293          @Override          @Override
294          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
295                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
296                  switch (id) {                  switch (id) {
297                  case DLG_PROGRESS:                  case DLG_PROGRESS:
298                          this.dialog = (ProgressDialog) dialog;                          this.dialog = (ProgressDialog) dialog;
299                            if (!dialogMessage.equals("")) {
300                                    this.dialog.setMessage(dialogMessage);
301                                    dialogMessage = "";
302                            }
303                          break;                          break;
304                  }                  }
305          }          }
   
         public void startLookup() {  
                 isRunning = true;  
                 showDialog(DLG_PROGRESS);  
                   
                 locator.locateStations();  
                 stationsFetched.sendEmptyMessageDelayed(FIXTIMEOUT, 20000);  
         }  
   
   
         Handler stationsFetched = new Handler() {  
                 @Override  
                 public void handleMessage(Message msg) {  
                         switch (msg.what) {  
                         case GOTLOCATION:  
                                 dialog.setMessage("Finding nearby stations");  
                                 locatorTask.execute();  
                                 break;  
   
                         case NOPROVIDER:  
                                 dialog.dismiss();  
                                 MessageBox.showMessage(TrainInfoList.this,"No location provider enabled. Plase enable gps.");  
                                 break;  
                         case FIXTIMEOUT:  
                                 dialog.dismiss();  
                                 if (isRunning) {  
                                         locator.abortLocationListener();  
                                         if (locator.hasLocation()) {  
                                                 msg.what = GOTLOCATION;  
                                                 handleMessage( msg ); // ToDo: ugly recursive call !!!  
                                         } else {  
                                                 MessageBox.showMessage(TrainInfoList.this,"GPS fix timed out");  
                                         }  
                                 }  
                                 break;  
                         case LOOKUPSTATIONFAILED:  
                                 dialog.dismiss();  
                                 MessageBox.showMessage(TrainInfoList.this,"Error on finding nearby stations");  
                                 break;  
                         }  
                         isRunning = false;  
                 }  
         };  
           
           
306                    
307          @Override          @Override
308          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
# Line 163  public class TrainInfoList extends ListA Line 322  public class TrainInfoList extends ListA
322                  intent.putExtra("longitude", longitude);                  intent.putExtra("longitude", longitude);
323                  intent.putExtra("stationid", station.getId());                  intent.putExtra("stationid", station.getId());
324                  intent.putExtra("address", station.getAddress());                  intent.putExtra("address", station.getAddress());
325                    intent.putExtra("isregional", station.isRegional());
326                    intent.putExtra("isstrain", station.isSTrain());
327                    intent.putExtra("ismetro", station.isMetro());
328                  startActivity(intent);                  startActivity(intent);
329          }          }
330    
331            /////////////////////////////////////////////////////////////
332            //
333    
334            public void startLookup() {
335                    isRunning = true;
336                    dialogMessage = "Wait for location fix";
337                    showDialog(DLG_PROGRESS);
338                    
339                    locationLookup.locateStations();
340                    stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
341            }
342            
343            void startNameSearch(String name) {
344                    dialogMessage = "Finding stations by name";
345                    showDialog(DLG_PROGRESS);
346    
347                    findStationsTask = new FindStationsTask();
348                    findStationsTask.searchByName(name, locationLookup.getLocation());
349                    findStationsTask.execute();
350                    
351            }
352            
353            public void startFavoriteLookup() {
354                    
355                    if (favorites.size() > 0) {
356                            dialogMessage = "Loading favorites";
357                            showDialog(DLG_PROGRESS);
358    
359                            findStationsTask = new FindStationsTask();
360                            findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
361                            findStationsTask.execute();
362                    } else {
363                            showMessageAndClose( "Favorite list is empty");
364                    }
365            }
366    
367    
368            
369            void startLocatorTask()
370            {
371                    dialogMessage = "Finding nearby stations";
372                    showDialog(DLG_PROGRESS);
373                    
374                    findStationsTask = new FindStationsTask();
375                    findStationsTask.searchByLocation( locationLookup.getLocation() );
376                    findStationsTask.execute();    
377            }
378            
379    
380            /* TODO: Remove this no longer needed function
381          String lookupAddress(double latitude, double longitude) {          String lookupAddress(double latitude, double longitude) {
382                                    
383                  Geocoder coder = new Geocoder(this, new Locale("da"));                  Geocoder coder = new Geocoder(this, new Locale("da"));
# Line 190  public class TrainInfoList extends ListA Line 402  public class TrainInfoList extends ListA
402                  }                  }
403                                    
404                  return sb.toString();                  return sb.toString();
405          }          }*/
406            
407            
408            ////////////////////////////////////////////////////////////////////////////
409            // Inner classes
410    
411            class StationsFetchedHandler extends Handler {
412                    @Override
413                    public void handleMessage(Message msg) {
414    
415                            switch (msg.what) {
416                            case GOTLOCATION:
417                                    dismissDialog(DLG_PROGRESS);
418                                    
419                                    startLocatorTask();
420                                    location = GeoPair.fromLocation( locationLookup.getLocation() );
421                                    
422                                    break;
423    
424                            case NOPROVIDER:
425                                    dismissDialog(DLG_PROGRESS);
426                                    MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
427                                    break;
428                            case LOCATIONFIXTIMEOUT:                                
429                                    if (isRunning) {
430                                            locationLookup.stopSearch();
431                                            if (locationLookup.hasLocation()) {
432                                                    stationsFetched.sendEmptyMessage( GOTLOCATION );
433                                            } else {                                                
434                                                    dismissDialog(DLG_PROGRESS);
435                                                    
436                                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
437                                                    builder.setMessage("Location fix timed out");
438                                                    builder.setCancelable(true);
439                                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
440                                                            public void onClick(DialogInterface dialog, int id) {
441                                                                    dialog.dismiss();
442                                                                    startLookup();
443                                                                    
444                                                            }
445                                                    });
446                                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
447                                                            public void onClick(DialogInterface dialog, int id) {
448                                                                    dialog.dismiss();
449                                                            }                                                      
450                                                    });                                                                                            
451                                                    builder.show();
452    
453                                            }
454                                    }
455                                    break;
456                            }
457                            isRunning = false;
458                    }
459            };
460    
461                    
462          class LocatorTask extends AsyncTask<Void,Void,Void> {          class FindStationsTask extends AsyncTask<Void,Void,Void> {
463                    
464                    LookupMethod method = LookupMethod.MethodNone;
465                  boolean success;                  boolean success;
466                    String name;
467                    Location loc;
468                    String ids;
469                    
470                    public void searchByName(String n, Location l) {
471                            
472                            method = LookupMethod.ByName;
473                            loc = l;
474                            name = n;
475                    }
476                    
477                    public void searchByLocation(Location l) {
478                            method = LookupMethod.ByLocation;
479                            loc = l;
480                    }
481                    
482                    public void searchByIds(String id, Location l) {
483                            
484                            method = LookupMethod.ByList;
485                            loc = l;
486                            ids = id;
487                    }
488                    
489                  @Override                  @Override
490                  protected void onPreExecute() {                  protected void onPreExecute() {
491    
492                            if (method.equals(LookupMethod.MethodNone))
493                                    throw new RuntimeException("Method not set");
494                          super.onPreExecute();                          super.onPreExecute();
495                  }                  }
496                                    
497                  @Override                  @Override
498                  protected Void doInBackground(Void... params) {                  protected Void doInBackground(Void... params) {
499                          Location loc = locator.getLocation();  
500                          success = stationProvider.lookupStations(loc);                          switch (method) {
501                            case ByLocation:
502                                    success = stationProvider.lookupStations(loc);
503                                    break;
504                            case ByName:
505                                    success = stationProvider.lookupStationsByName(name);
506                                    break;
507                            case ByList:
508                                    success = stationProvider.lookupStationsByIds(ids);
509                                    break;
510                            default:
511                                    success = false; // not possible        
512                            }
513                                                    
514                                                    
515                            Location dummy = new Location("gps");
516                          List<StationBean> stations = stationProvider.getStations();                          List<StationBean> stations = stationProvider.getStations();
517                          for (StationBean station : stations) {                          
518                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());                          for (StationBean station : stations) {
519                                  station.setAddress(addr);                                                                  
520                          }                                  if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
521                                            if (loc != null) { //only do the distance calc if we have a location
522                                                    dummy.setLatitude(station.getLatitude());
523                                                    dummy.setLongitude(station.getLongitude());
524                                                    station.setDistance( (int)loc.distanceTo(dummy) );
525                                            } else {
526                                                    station.setDistance(0);
527                                            }
528                                    }
529    
530                            }                                              
531                                                    
532                          return null;                          return null;
533                  }                  }
# Line 220  public class TrainInfoList extends ListA Line 537  public class TrainInfoList extends ListA
537                          super.onPostExecute(result);                          super.onPostExecute(result);
538                          dialog.dismiss();                          dialog.dismiss();
539                                                    
540                            
541                          if (success) {                                                    if (success) {                          
542                                  if (stationProvider.getStations().size() == 0)                                  if (stationProvider.getStations().size() == 0)
543                                          MessageBox.showMessage(TrainInfoList.this, "No stations found!"); // this should not be possible !?!                                          MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
544                                  stations = stationProvider.getStations();                                  stations = stationProvider.getStations();
545                                  adapter.setStations( stations );                                                                  adapter.setStations( stations );                                
546                                                                    
547                          } else { //communication or parse errors                          } else { //communication or parse errors
548                                  MessageBox.showMessage(TrainInfoList.this, "Error finding stations!");                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
549                                    builder.setMessage("Error on finding nearby stations");
550                                    builder.setCancelable(true);
551                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
552                                            public void onClick(DialogInterface dialog, int id) {
553                                                    dialog.dismiss();
554                                                    
555                                                    stationsFetched.post( new Runnable() {
556                                                            @Override
557                                                            public void run() {
558                                                                    startLocatorTask();                                                            
559                                                            }
560                                                    });
561                                            }
562                                    });
563                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
564                                            public void onClick(DialogInterface dialog, int id) {
565                                                    dialog.dismiss();
566                                            }                                                      
567                                    });                                                                                            
568                                    builder.show();                        
569                            }
570                    }
571            }
572            
573            
574            class FavoritesMenu implements OnCreateContextMenuListener {
575                    private final static int FAVORITES_ADD = 9001;
576                    private final static int FAVORITES_REMOVE = 9002;
577                    
578                    private int selectedPosition;
579                    
580                    
581                    @Override
582                    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
583                                                    
584                            AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
585                            selectedPosition = info.position;
586                            int stationID = stations.get(selectedPosition).getId();
587    
588                            if (!favorites.contains(stationID)) {
589                                    menu.add(0, FAVORITES_ADD, 0, "Add to favorites");
590                            } else {
591                                    menu.add(0, FAVORITES_REMOVE, 0, "Remove from favorites");
592                            }
593                            
594                    }
595                    
596                    public void onContextItemSelected(MenuItem item) {
597                            StationBean sb = stations.get(selectedPosition);
598                            
599                            int stationID = sb.getId();
600                            if (item.getItemId() == FAVORITES_ADD) {
601                                    favorites.add(stationID);
602                                    Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
603                            } else {
604                                    
605                                    favorites.remove(stationID);
606                                    Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
607                                    
608                                    
609                                    if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
610                                            stations.remove(selectedPosition);
611                                            adapter.notifyDataSetChanged();
612                                    }
613                          }                          }
614                            Editor ed = prefs.edit();
615                            ed.putString("favorites", favorites.toString());
616                            ed.commit();
617                  }                  }
618          }          }
619  }  }

Legend:
Removed from v.319  
changed lines
  Added in v.556

  ViewVC Help
Powered by ViewVC 1.1.20