/[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 258 by torben, Mon Aug 10 19:37:18 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/StationList.java revision 555 by torben, Wed Jan 27 06:07:27 2010 UTC
# Line 3  package dk.thoerup.traininfo; Line 3  package dk.thoerup.traininfo;
3  import java.util.ArrayList;  import java.util.ArrayList;
4  import java.util.List;  import java.util.List;
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.content.SharedPreferences;
14    import android.content.SharedPreferences.Editor;
15    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    
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;
33    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;
44          public static final int LOOKUPSTATIONFAILED = 5;          
45            public static final int OPTIONS_MAP = 2003;
46            public static final int OPTIONS_GPSINFO = 2004;
47    
48                    
49          public static final int DLG_PROGRESS = 1;  
50            
51            public static final int DLG_PROGRESS = 3001;
52            public static final int DLG_STATIONNAME = 3002;
53                    
54          /** Called when the activity is first created. */          static enum LookupMethod {
55                    ByLocation,
56                    ByName,
57                    ByList,
58                    MethodNone
59            }
60            
61            
62            String dialogMessage = "";
63          ProgressDialog dialog;          ProgressDialog dialog;
64          StationLocator 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();
74                    
75          StationListAdapter adapter = null;          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            
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                                    
                 StationLocator.removeMockLocation(this);  
                 //StationLocator.injectMockLocation(this);  
92                                    
93                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this);
94                  setListAdapter(adapter);                  setListAdapter(adapter);
95                                    
96                  locator = new StationLocator(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(new ArrayList<StationBean>(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    
234    
235    
236            @Override
237          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
238                  switch (id) {                  switch (id) {
239                  case DLG_PROGRESS:                  case DLG_PROGRESS:
240                          ProgressDialog dlg = new ProgressDialog(this);                          ProgressDialog dlg = new ProgressDialog(this);
241                          dlg.setMessage("Wait for location fix");                          dlg.setMessage("Wait for location fix");
242                          dlg.setCancelable(false);                          dlg.setCancelable(false);
243                          return dlg;                          return dlg;                    
244                    case DLG_STATIONNAME:
245                            LayoutInflater factory = LayoutInflater.from(this);
246                            final View rootView = factory.inflate(R.layout.textinput, null);
247                            
248                            
249                            AlertDialog.Builder builder = new AlertDialog.Builder(this);
250                            
251                            builder.setTitle("Station search");
252                            builder.setView(rootView);
253                            builder.setCancelable(true);
254                            builder.setPositiveButton("Search", new DialogInterface.OnClickListener() {
255                                    public void onClick(DialogInterface dialog, int which) {
256                                            EditText et = (EditText) rootView.findViewById(R.id.EditText);
257                                            dialog.dismiss();
258                                            if (et.getText().toString().length() >= 2) {
259                                                    startNameSearch(et.getText().toString());
260                                            } else {
261                                                    MessageBox.showMessage(StationList.this, "Two characters minimum" );
262                                            }
263                                    }
264                            });
265                            builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
266                                    public void onClick(DialogInterface dialog, int which) {
267                                            dialog.dismiss();
268                                            StationList.this.finish(); // Close this Activity
269                                    }
270                            });                    
271                            return builder.create();
272                            
273                  default:                  default:
274                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
275                  }                  }
# Line 81  public class TrainInfoList extends ListA Line 277  public class TrainInfoList extends ListA
277          }          }
278                    
279                    
   
280          @Override          @Override
281          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
282                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
283                  switch (id) {                  switch (id) {
284                  case DLG_PROGRESS:                  case DLG_PROGRESS:
285                          this.dialog = (ProgressDialog) dialog;                          this.dialog = (ProgressDialog) dialog;
286                            if (!dialogMessage.equals("")) {
287                                    this.dialog.setMessage(dialogMessage);
288                                    dialogMessage = "";
289                            }
290                          break;                          break;
291                  }                  }
292          }          }
293            
294            @Override
295            protected void onListItemClick(ListView l, View v, int position, long id) {
296                    super.onListItemClick(l, v, position, id);
297                                    
298                    StationBean station = stations.get(position);
299    
300                    double latitude = station.getLatitude();
301                    double longitude = station.getLongitude();
302    
303    
304                    
305                    Intent intent = new Intent(this, DepartureList.class);
306                    intent.putExtra("name", station.getName());
307                    intent.putExtra("distance", station.getDistance());
308                    intent.putExtra("latitude", latitude);
309                    intent.putExtra("longitude", longitude);
310                    intent.putExtra("stationid", station.getId());
311                    intent.putExtra("address", station.getAddress());
312                    intent.putExtra("isregional", station.isRegional());
313                    intent.putExtra("isstrain", station.isSTrain());
314                    intent.putExtra("ismetro", station.isMetro());
315                    startActivity(intent);
316            }
317    
318            /////////////////////////////////////////////////////////////
319            //
320    
321          public void startLookup() {          public void startLookup() {
322                  isRunning = true;                  isRunning = true;
323                    dialogMessage = "Wait for location fix";
324                    showDialog(DLG_PROGRESS);
325                    
326                    locationLookup.locateStations();
327                    stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
328            }
329            
330            void startNameSearch(String name) {
331                    dialogMessage = "Finding stations by name";
332                    showDialog(DLG_PROGRESS);
333    
334                    findStationsTask = new FindStationsTask();
335                    findStationsTask.searchByName(name, locationLookup.getLocation());
336                    findStationsTask.execute();
337                    
338            }
339            
340            public void startFavoriteLookup() {
341                    
342                    if (favorites.size() > 0) {
343                            dialogMessage = "Loading favorites";
344                            showDialog(DLG_PROGRESS);
345    
346                            findStationsTask = new FindStationsTask();
347                            findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
348                            findStationsTask.execute();
349                    } else {
350                            MessageBox.showMessage(this, "Favorite list is empty");
351                    }
352            }
353    
354    
355            
356            void startLocatorTask()
357            {
358                    dialogMessage = "Finding nearby stations";
359                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
360                                    
361                  locator.locateStations();                  findStationsTask = new FindStationsTask();
362                  stationsFetched.sendEmptyMessageDelayed(FIXTIMEOUT, 20000);                  findStationsTask.searchByLocation( locationLookup.getLocation() );
363                    findStationsTask.execute();    
364          }          }
365            
366    
367            /* TODO: Remove this no longer needed function
368            String lookupAddress(double latitude, double longitude) {
369                    
370                    Geocoder coder = new Geocoder(this, new Locale("da"));
371                    StringBuilder sb = new StringBuilder();
372                    Log.i("lookupaddr", "" + latitude + "/" + longitude);
373                    try {
374                            List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);
375                            Address addr = addressList.get(0);
376                            
377                            
378                            int max = addr.getMaxAddressLineIndex();
379                            for (int i=0; i<max; i++) {
380                                    if (i>0)
381                                            sb.append(", ");
382                                    
383                                    sb.append(addr.getAddressLine(i));
384                            }
385                            
386                            
387                    } catch (Exception e) {
388                            Log.e("DepartureList", "geocoder failed", e);
389                    }
390                    
391                    return sb.toString();
392            }*/
393            
394            
395            ////////////////////////////////////////////////////////////////////////////
396            // Inner classes
397    
398          Handler stationsFetched = new Handler() {          class StationsFetchedHandler extends Handler {
399                  @Override                  @Override
400                  public void handleMessage(Message msg) {                  public void handleMessage(Message msg) {
401    
402                          switch (msg.what) {                          switch (msg.what) {
403                          case GOTLOCATION:                          case GOTLOCATION:
404                                  dialog.setMessage("Finding nearby stations");                                  dismissDialog(DLG_PROGRESS);
405                                  locatorTask.execute();                                  
406                                  break;                                  startLocatorTask();
407                          case GOTSTATIONLIST:                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
408                                  dialog.dismiss();                                  
                                 if (locator.getStations().size() == 0)  
                                         MessageBox.showMessage(TrainInfoList.this,"Error loading station list!");  
                                 stations = locator.getStations();  
                                 adapter.setStations( stations );  
409                                  break;                                  break;
410    
411                          case NOPROVIDER:                          case NOPROVIDER:
412                                  dialog.dismiss();                                  dismissDialog(DLG_PROGRESS);
413                                  MessageBox.showMessage(TrainInfoList.this,"No location provider enabled. Plase enable gps.");                                  MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
414                                  break;                                  break;
415                          case FIXTIMEOUT:                          case LOCATIONFIXTIMEOUT:                                
                                 dialog.dismiss();  
416                                  if (isRunning) {                                  if (isRunning) {
417                                          locator.abortLocationListener();                                          locationLookup.stopSearch();
418                                          MessageBox.showMessage(TrainInfoList.this,"GPS fix timed out");                                          if (locationLookup.hasLocation()) {
419                                                    stationsFetched.sendEmptyMessage( GOTLOCATION );
420                                            } else {                                                
421                                                    dismissDialog(DLG_PROGRESS);
422                                                    
423                                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
424                                                    builder.setMessage("Location fix timed out");
425                                                    builder.setCancelable(true);
426                                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
427                                                            public void onClick(DialogInterface dialog, int id) {
428                                                                    dialog.dismiss();
429                                                                    startLookup();
430                                                                    
431                                                            }
432                                                    });
433                                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
434                                                            public void onClick(DialogInterface dialog, int id) {
435                                                                    dialog.dismiss();
436                                                            }                                                      
437                                                    });                                                                                            
438                                                    builder.show();
439    
440                                            }
441                                  }                                  }
442                                  break;                                  break;
                         case LOOKUPSTATIONFAILED:  
                                 dialog.dismiss();  
                                 MessageBox.showMessage(TrainInfoList.this,"Error on finding nearby stations");  
                                 break;  
443                          }                          }
444                          isRunning = false;                          isRunning = false;
445                  }                  }
446          };          };
447    
448                    
449                    class FindStationsTask extends AsyncTask<Void,Void,Void> {
           
         @Override  
         protected void onListItemClick(ListView l, View v, int position, long id) {  
                 super.onListItemClick(l, v, position, id);  
450                                    
451                    LookupMethod method = LookupMethod.MethodNone;
452                    boolean success;
453                    String name;
454                    Location loc;
455                    String ids;
456                                    
457                  StationBean station = stations.get(position);                  public void searchByName(String n, Location l) {
458                            
459                            method = LookupMethod.ByName;
460                            loc = l;
461                            name = n;
462                    }
463                                    
464                    public void searchByLocation(Location l) {
465                            method = LookupMethod.ByLocation;
466                            loc = l;
467                    }
468                    
469                    public void searchByIds(String id, Location l) {
470                            
471                            method = LookupMethod.ByList;
472                            loc = l;
473                            ids = id;
474                    }
475                                    
                 Intent intent = new Intent(this, DepartureList.class);  
                 intent.putExtra("name", station.getName());  
                 intent.putExtra("address", station.getAddress());  
                 intent.putExtra("distance", station.getDistance());  
                 intent.putExtra("latitude", station.getLatitude());  
                 intent.putExtra("longitude", station.getLongitude());  
                 startActivity(intent);  
         }  
   
           
         class LocatorTask extends AsyncTask<Void,Void,Void> {  
476                  @Override                  @Override
477                  protected void onPreExecute() {                  protected void onPreExecute() {
478    
479                            if (method.equals(LookupMethod.MethodNone))
480                                    throw new RuntimeException("Method not set");
481                          super.onPreExecute();                          super.onPreExecute();
482                  }                  }
483                                    
484                  @Override                  @Override
485                  protected Void doInBackground(Void... params) {                  protected Void doInBackground(Void... params) {
486                          locator.findNearestStations();  
487                            switch (method) {
488                            case ByLocation:
489                                    success = stationProvider.lookupStations(loc);
490                                    break;
491                            case ByName:
492                                    success = stationProvider.lookupStationsByName(name);
493                                    break;
494                            case ByList:
495                                    success = stationProvider.lookupStationsByIds(ids);
496                                    break;
497                            default:
498                                    success = false; // not possible        
499                            }
500                            
501                            
502                            Location dummy = new Location("gps");
503                            List<StationBean> stations = stationProvider.getStations();
504                            
505                            for (StationBean station : stations) {
506                                                                    
507                                    if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
508                                            if (loc != null) { //only do the distance calc if we have a location
509                                                    dummy.setLatitude(station.getLatitude());
510                                                    dummy.setLongitude(station.getLongitude());
511                                                    station.setDistance( (int)loc.distanceTo(dummy) );
512                                            } else {
513                                                    station.setDistance(0);
514                                            }
515                                    }
516    
517                            }                                              
518                                                    
519                          return null;                          return null;
520                  }                  }
# Line 173  public class TrainInfoList extends ListA Line 522  public class TrainInfoList extends ListA
522                  @Override                  @Override
523                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
524                          super.onPostExecute(result);                          super.onPostExecute(result);
525                            dialog.dismiss();
526                            
527                            
528                            if (success) {                          
529                                    if (stationProvider.getStations().size() == 0)
530                                            MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
531                                    stations = stationProvider.getStations();
532                                    adapter.setStations( stations );                                
533                                    
534                            } else { //communication or parse errors
535                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
536                                    builder.setMessage("Error on finding nearby stations");
537                                    builder.setCancelable(true);
538                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
539                                            public void onClick(DialogInterface dialog, int id) {
540                                                    dialog.dismiss();
541                                                    
542                                                    stationsFetched.post( new Runnable() {
543                                                            @Override
544                                                            public void run() {
545                                                                    startLocatorTask();                                                            
546                                                            }
547                                                    });
548                                            }
549                                    });
550                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
551                                            public void onClick(DialogInterface dialog, int id) {
552                                                    dialog.dismiss();
553                                            }                                                      
554                                    });                                                                                            
555                                    builder.show();                        
556                            }
557                    }
558            }
559            
560            
561            class FavoritesMenu implements OnCreateContextMenuListener {
562                    private final static int FAVORITES_ADD = 9001;
563                    private final static int FAVORITES_REMOVE = 9002;
564                    
565                    private int selectedPosition;
566                    
567                    
568                    @Override
569                    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
570                                                    
571                            AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
572                            selectedPosition = info.position;
573                            int stationID = stations.get(selectedPosition).getId();
574    
575                            if (!favorites.contains(stationID)) {
576                                    menu.add(0, FAVORITES_ADD, 0, "Add to favorites");
577                            } else {
578                                    menu.add(0, FAVORITES_REMOVE, 0, "Remove from favorites");
579                            }
580                            
581                    }
582                    
583                    public void onContextItemSelected(MenuItem item) {
584                            StationBean sb = stations.get(selectedPosition);
585                            
586                            int stationID = sb.getId();
587                            if (item.getItemId() == FAVORITES_ADD) {
588                                    favorites.add(stationID);
589                                    Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
590                            } else {
591                                    
592                                    favorites.remove(stationID);
593                                    Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
594                                    
595                                    
596                                    if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
597                                            stations.remove(selectedPosition);
598                                            adapter.notifyDataSetChanged();
599                                    }
600                            }
601                            Editor ed = prefs.edit();
602                            ed.putString("favorites", favorites.toString());
603                            ed.commit();
604                  }                  }
605          }          }
606  }  }

Legend:
Removed from v.258  
changed lines
  Added in v.555

  ViewVC Help
Powered by ViewVC 1.1.20