/[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 331 by torben, Tue Sep 22 13:57:13 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/StationList.java revision 478 by torben, Wed Oct 28 08:40:32 2009 UTC
# Line 4  import java.util.ArrayList; Line 4  import java.util.ArrayList;
4  import java.util.List;  import java.util.List;
5  import java.util.Locale;  import java.util.Locale;
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.Address;  import android.location.Address;
16  import android.location.Geocoder;  import android.location.Geocoder;
17  import android.location.Location;  import android.location.Location;
# Line 16  import android.os.Bundle; Line 20  import android.os.Bundle;
20  import android.os.Handler;  import android.os.Handler;
21  import android.os.Message;  import android.os.Message;
22  import android.util.Log;  import android.util.Log;
23    import android.view.ContextMenu;
24    import android.view.LayoutInflater;
25    import android.view.Menu;
26    import android.view.MenuItem;
27  import android.view.View;  import android.view.View;
28    import android.view.ContextMenu.ContextMenuInfo;
29    import android.view.View.OnCreateContextMenuListener;
30    import android.widget.AdapterView;
31    import android.widget.EditText;
32  import android.widget.ListView;  import android.widget.ListView;
33    import android.widget.Toast;
34  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
35  import dk.thoerup.traininfo.provider.StationProvider;  import dk.thoerup.traininfo.provider.StationProvider;
36    import dk.thoerup.traininfo.stationmap.GeoPair;
37    import dk.thoerup.traininfo.stationmap.StationMapView;
38    import dk.thoerup.traininfo.util.IntSet;
39  import dk.thoerup.traininfo.util.MessageBox;  import dk.thoerup.traininfo.util.MessageBox;
40    
41  public class TrainInfoList extends ListActivity  {  public class StationList extends ListActivity  {
42          public static final int GOTLOCATION = 1;          public static final int GOTLOCATION = 1001;
43          public static final int GOTSTATIONLIST = 2;          public static final int GOTSTATIONLIST = 1002;
44          public static final int NOPROVIDER = 3;          public static final int NOPROVIDER = 1003;
45          public static final int FIXTIMEOUT = 4;          public static final int LOCATIONFIXTIMEOUT = 1004;
46          public static final int LOOKUPSTATIONFAILED = 5;          
47            public static final int OPTIONS_RESCAN = 2001;
48            public static final int OPTIONS_NAMESEARCH = 2002;
49            public static final int OPTIONS_MAP = 2003;
50            public static final int OPTIONS_ABOUT = 2004;
51            public static final int OPTIONS_FAVORITES = 2005;
52            
53    
54            
55            public static final int DLG_PROGRESS = 3001;
56            public static final int DLG_STATIONNAME = 3002;
57            
58            static enum LookupMethod {
59                    ByLocation,
60                    ByName,
61                    ByList,
62                    MethodNone
63            }
64                    
         public static final int DLG_PROGRESS = 1;  
65                    
66          /** Called when the activity is first created. */          String dialogMessage = "";
67          ProgressDialog dialog;          ProgressDialog dialog;
68          LocationLookup locator = null;          LocationLookup locator = null;
69          LocatorTask locatorTask = new LocatorTask();          FindStationsTask findStationsTask;
70            StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
71            
72            GeoPair location = new GeoPair();
73                    
74          boolean isRunning = false;          boolean isRunning = false;
75          List<StationBean> stations = new ArrayList<StationBean>();          List<StationBean> stations = new ArrayList<StationBean>();
76                    
77          StationProvider stationProvider = ProviderFactory.getStationProvider();          StationProvider stationProvider = ProviderFactory.getStationProvider();
78                    
79            StationListAdapter adapter = null;
80                    
81            FavoritesMenu contextMenu = new FavoritesMenu();
82            IntSet favorites = new IntSet();
83            
84            boolean showingFavorites = false;
85            
86            SharedPreferences prefs;
87            
88            ///////////////////////////////////////////////////////////////////////////////////////////
89            //Activity call backs
90                    
         StationListAdapter adapter = null;  
91          @SuppressWarnings("unchecked")          @SuppressWarnings("unchecked")
92          @Override          @Override
93          public void onCreate(Bundle savedInstanceState) {          public void onCreate(Bundle savedInstanceState) {
94                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
95                  setContentView(R.layout.main);                  setContentView(R.layout.main);
96                                    
                 //LocationLookup.removeMockLocation(this);  
                 LocationLookup.injectMockLocation(this);  
97                                    
98                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this);
99                  setListAdapter(adapter);                  setListAdapter(adapter);
100                                    
101                    ListView lv = getListView();
102                    lv.setOnCreateContextMenuListener(contextMenu);
103                    
104                  locator = new LocationLookup(this, stationsFetched);                  locator = new LocationLookup(this, stationsFetched);
105                    
106    
107                    prefs = getSharedPreferences("TrainStation", 0);
108                    String favoriteString = prefs.getString("favorites", "");
109                    if (! favoriteString.equals("") ) {
110                            favorites.fromString(favoriteString);
111                    }
112                    
113                  if (savedInstanceState == null) {                  if (savedInstanceState == null) {
114                          startLookup();                          startLookup();
115                  } else {                  } else {
116                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
117                          adapter.setStations(stations);                          adapter.setStations(stations);
118                            location = (GeoPair) savedInstanceState.getSerializable("location");
119                  }                  }
120          }          }
121            
122    
123      @Override      @Override
124      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
125      {      {
126          if (dialog != null && dialog.isShowing())          if (dialog != null && dialog.isShowing())
127                  dialog.dismiss();                  dialog.dismiss();
128          outState.putSerializable("stations", (ArrayList<StationBean>) stations);          outState.putSerializable("stations", (ArrayList<StationBean>) stations);
129            outState.putSerializable("location", location);
130      }      }
131                    
132                    
133    
134          @Override          @Override
135            public boolean onCreateOptionsMenu(Menu menu) {
136                    MenuItem item;
137                    
138                    item = menu.add(0, OPTIONS_RESCAN, 0, "Nearest stations");
139                    item.setIcon(android.R.drawable.ic_menu_mylocation);
140                    
141                    item = menu.add(0, OPTIONS_NAMESEARCH, 0, "Search for station");
142                    item.setIcon(android.R.drawable.ic_menu_search);
143                    
144                    item = menu.add(0, OPTIONS_FAVORITES, 0, "Favorites");
145                    item.setIcon(android.R.drawable.ic_menu_agenda);
146                    
147                    item = menu.add(0, OPTIONS_MAP, 0, "Station map");
148                    item.setIcon(android.R.drawable.ic_menu_mapmode);
149                    
150                    item = menu.add(0, OPTIONS_ABOUT, 0, "About");
151                    item.setIcon(android.R.drawable.ic_menu_info_details);
152                    return true;
153            }
154    
155            @Override
156            public boolean onOptionsItemSelected(MenuItem item) {
157                    boolean retval = true;
158    
159                    
160                    switch (item.getItemId()) {
161                    case OPTIONS_RESCAN:
162                            startLookup();
163                            break;
164                    case OPTIONS_NAMESEARCH:
165                            showDialog(DLG_STATIONNAME);
166                            break;
167                    case OPTIONS_FAVORITES:
168                            startFavoriteLookup();
169                            break;
170                    case OPTIONS_MAP:
171                            
172                            Intent intent = new Intent(this,StationMapView.class);
173                            intent.putExtra("userlocation", location );
174                            
175                            ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
176                            for (StationBean st : stations ) {
177                                    stationPoints.add( new GeoPair(st.getLatitude(), st.getLongitude(), st.getName()) );
178                            }
179                            
180                            intent.putExtra("stations", stationPoints);
181                            
182                            startActivity(intent);
183                            break;
184                    case OPTIONS_ABOUT:
185                            String ver = this.getResources().getString(R.string.app_version);
186                            
187                            Location loc = locator.getLocation();
188                            StringBuffer message = new StringBuffer();
189                            message.append("TrainInfo DK v").append(ver).append("\n");
190                            message.append("By Torben Nielsen\n");
191                            message.append("\n");
192                            message.append("Location info:\n");
193                            message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");
194                            message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");
195    
196                            MessageBox.showMessage(this, message.toString());
197                            break;
198                    default:
199                            retval = super.onOptionsItemSelected(item);
200                    }
201                    
202                    return retval;
203            }
204            
205            
206    
207            @Override
208            public boolean onContextItemSelected(MenuItem item) {
209                    contextMenu.onContextItemSelected(item);
210                    return true;
211    
212    
213            }
214    
215    
216    
217    
218            @Override
219          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
220                  switch (id) {                  switch (id) {
221                  case DLG_PROGRESS:                  case DLG_PROGRESS:
222                          ProgressDialog dlg = new ProgressDialog(this);                          ProgressDialog dlg = new ProgressDialog(this);
223                          dlg.setMessage("Wait for location fix");                          dlg.setMessage("Wait for location fix");
224                          dlg.setCancelable(false);                          dlg.setCancelable(false);
225                          return dlg;                          return dlg;                    
226                    case DLG_STATIONNAME:
227                            LayoutInflater factory = LayoutInflater.from(this);
228                            final View rootView = factory.inflate(R.layout.textinput, null);
229                            
230                            
231                            AlertDialog.Builder builder = new AlertDialog.Builder(this);
232                            
233                            builder.setTitle("Station search");
234                            builder.setView(rootView);
235                            builder.setCancelable(true);
236                            builder.setPositiveButton("Search", new DialogInterface.OnClickListener() {
237                                    public void onClick(DialogInterface dialog, int which) {
238                                            EditText et = (EditText) rootView.findViewById(R.id.EditText);
239                                            dialog.dismiss();
240                                            if (et.getText().toString().length() >= 2) {
241                                                    startNameSearch(et.getText().toString());
242                                            } else {
243                                                    MessageBox.showMessage(StationList.this, "Two characters minimum" );
244                                            }
245                                    }
246                            });
247                            builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
248                                    public void onClick(DialogInterface dialog, int which) {
249                                            dialog.dismiss();
250                                    }
251                            });                    
252                            return builder.create();
253                            
254                  default:                  default:
255                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
256                  }                  }
# Line 89  public class TrainInfoList extends ListA Line 258  public class TrainInfoList extends ListA
258          }          }
259                    
260                    
   
261          @Override          @Override
262          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
263                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
264                  switch (id) {                  switch (id) {
265                  case DLG_PROGRESS:                  case DLG_PROGRESS:
266                          this.dialog = (ProgressDialog) dialog;                          this.dialog = (ProgressDialog) dialog;
267                            if (!dialogMessage.equals("")) {
268                                    this.dialog.setMessage(dialogMessage);
269                                    dialogMessage = "";
270                            }
271                          break;                          break;
272                  }                  }
273          }          }
   
         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;  
                 }  
         };  
           
           
274                    
275          @Override          @Override
276          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
# Line 166  public class TrainInfoList extends ListA Line 293  public class TrainInfoList extends ListA
293                  startActivity(intent);                  startActivity(intent);
294          }          }
295    
296            /////////////////////////////////////////////////////////////
297            //
298    
299            public void startLookup() {
300                    isRunning = true;
301                    dialogMessage = "Wait for location fix";
302                    showDialog(DLG_PROGRESS);
303                    
304                    locator.locateStations();
305                    stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
306            }
307            
308            void startNameSearch(String name) {
309                    dialogMessage = "Finding stations by name";
310                    showDialog(DLG_PROGRESS);
311    
312                    findStationsTask = new FindStationsTask();
313                    findStationsTask.searchByName(name, locator.getLocation());
314                    findStationsTask.execute();
315                    
316            }
317            
318            public void startFavoriteLookup() {
319                    
320                    if (favorites.size() > 0) {
321                            dialogMessage = "Loading favorites";
322                            showDialog(DLG_PROGRESS);
323    
324                            findStationsTask = new FindStationsTask();
325                            findStationsTask.searchByIds(favorites.toString(), locator.getLocation());
326                            findStationsTask.execute();
327                    } else {
328                            MessageBox.showMessage(this, "Favorite list is empty");
329                    }
330            }
331    
332    
333            
334            void startLocatorTask()
335            {
336                    dialogMessage = "Finding nearby stations";
337                    showDialog(DLG_PROGRESS);
338                    
339                    findStationsTask = new FindStationsTask();
340                    findStationsTask.searchByLocation( locator.getLocation() );
341                    findStationsTask.execute();    
342            }
343            
344    
345          String lookupAddress(double latitude, double longitude) {          String lookupAddress(double latitude, double longitude) {
346                                    
347                  Geocoder coder = new Geocoder(this, new Locale("da"));                  Geocoder coder = new Geocoder(this, new Locale("da"));
# Line 192  public class TrainInfoList extends ListA Line 368  public class TrainInfoList extends ListA
368                  return sb.toString();                  return sb.toString();
369          }          }
370                    
371          class LocatorTask extends AsyncTask<Void,Void,Void> {          
372            ////////////////////////////////////////////////////////////////////////////
373            // Inner classes
374    
375            class StationsFetchedHandler extends Handler {
376                    @Override
377                    public void handleMessage(Message msg) {
378    
379                            switch (msg.what) {
380                            case GOTLOCATION:
381                                    dismissDialog(DLG_PROGRESS);
382                                    
383                                    startLocatorTask();
384                                    location = GeoPair.fromLocation( locator.getLocation() );
385                                    
386                                    break;
387    
388                            case NOPROVIDER:
389                                    dismissDialog(DLG_PROGRESS);
390                                    MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
391                                    break;
392                            case LOCATIONFIXTIMEOUT:                                
393                                    if (isRunning) {
394                                            locator.stopSearch();
395                                            if (locator.hasLocation()) {
396                                                    stationsFetched.sendEmptyMessage( GOTLOCATION );
397                                            } else {                                                
398                                                    dismissDialog(DLG_PROGRESS);
399                                                    
400                                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
401                                                    builder.setMessage("Location fix timed out");
402                                                    builder.setCancelable(true);
403                                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
404                                                            public void onClick(DialogInterface dialog, int id) {
405                                                                    dialog.dismiss();
406                                                                    startLookup();
407                                                                    
408                                                            }
409                                                    });
410                                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
411                                                            public void onClick(DialogInterface dialog, int id) {
412                                                                    dialog.dismiss();
413                                                            }                                                      
414                                                    });                                                                                            
415                                                    builder.show();
416    
417                                            }
418                                    }
419                                    break;
420                            }
421                            isRunning = false;
422                    }
423            };
424    
425            
426            class FindStationsTask extends AsyncTask<Void,Void,Void> {
427                    
428                    LookupMethod method = LookupMethod.MethodNone;
429                  boolean success;                  boolean success;
430                    String name;
431                    Location loc;
432                    String ids;
433                    
434                    public void searchByName(String n, Location l) {
435                            
436                            method = LookupMethod.ByName;
437                            loc = l;
438                            name = n;
439                    }
440                    
441                    public void searchByLocation(Location l) {
442                            method = LookupMethod.ByLocation;
443                            loc = l;
444                    }
445                    
446                    public void searchByIds(String id, Location l) {
447                            
448                            method = LookupMethod.ByList;
449                            loc = l;
450                            ids = id;
451                    }
452                    
453                  @Override                  @Override
454                  protected void onPreExecute() {                  protected void onPreExecute() {
455    
456                            if (method.equals(LookupMethod.MethodNone))
457                                    throw new RuntimeException("Method not set");
458                          super.onPreExecute();                          super.onPreExecute();
459                  }                  }
460                                    
461                  @Override                  @Override
462                  protected Void doInBackground(Void... params) {                  protected Void doInBackground(Void... params) {
463                          Location loc = locator.getLocation();  
464                          success = stationProvider.lookupStations(loc);                          switch (method) {
465                            case ByLocation:
466                                    success = stationProvider.lookupStations(loc);
467                                    break;
468                            case ByName:
469                                    success = stationProvider.lookupStationsByName(name);
470                                    break;
471                            case ByList:
472                                    success = stationProvider.lookupStationsByIds(ids);
473                                    break;
474                            default:
475                                    success = false; // not possible        
476                            }
477                                                    
478                                                    
479                            Location dummy = new Location("gps");
480                          List<StationBean> stations = stationProvider.getStations();                          List<StationBean> stations = stationProvider.getStations();
481                          for (StationBean station : stations) {                          
482                            for (StationBean station : stations) {
483                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());                                  String addr = lookupAddress(station.getLatitude(), station.getLongitude());
484                                  station.setAddress(addr);                                  station.setAddress(addr);
485                          }                                  
486                                    
487                                    if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
488                                            if (loc != null) { //only do the distance calc if we have a location
489                                                    dummy.setLatitude(station.getLatitude());
490                                                    dummy.setLongitude(station.getLongitude());
491                                                    station.setDistance( (int)loc.distanceTo(dummy) );
492                                            } else {
493                                                    station.setDistance(0);
494                                            }
495                                    }
496    
497                            }                                              
498                                                    
499                          return null;                          return null;
500                  }                  }
# Line 220  public class TrainInfoList extends ListA Line 504  public class TrainInfoList extends ListA
504                          super.onPostExecute(result);                          super.onPostExecute(result);
505                          dialog.dismiss();                          dialog.dismiss();
506                                                    
507                            //set title
508                            String title;
509                            switch (method) {
510                            case ByLocation:
511                                    title = "Traininfo DK - Nearby stations";
512                                    break;
513                            case ByName:
514                                    title = "Traininfo DK - Search";
515                                    break;
516                            case ByList:
517                                    title = "Traininfo DK - Favorites";
518                                    break;
519                            default:
520                                    title = "";//not possible                                      
521                            }                              
522                            
523                            StationList.this.setTitle(title);
524                            //set title end
525                            
526                          if (success) {                                                    if (success) {                          
527                                  if (stationProvider.getStations().size() == 0)                                  if (stationProvider.getStations().size() == 0)
528                                          MessageBox.showMessage(TrainInfoList.this, "No stations found!"); // this should not be possible !?!                                          MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
529                                  stations = stationProvider.getStations();                                  stations = stationProvider.getStations();
530                                  adapter.setStations( stations );                                                                  adapter.setStations( stations );
531                                    
532                                    showingFavorites = method.equals(LookupMethod.ByList);                          
533                                                                    
534                          } else { //communication or parse errors                          } else { //communication or parse errors
535                                  MessageBox.showMessage(TrainInfoList.this, "Error finding stations!");                                  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                                    if (showingFavorites) {
596                                            stations.remove(selectedPosition);
597                                            adapter.notifyDataSetChanged();
598                                    }
599                          }                          }
600                            Editor ed = prefs.edit();
601                            ed.putString("favorites", favorites.toString());
602                            ed.commit();
603                  }                  }
604          }          }
605  }  }

Legend:
Removed from v.331  
changed lines
  Added in v.478

  ViewVC Help
Powered by ViewVC 1.1.20