/[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 310 by torben, Thu Sep 10 19:09:09 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/StationList.java revision 552 by torben, Tue Jan 26 21:17:26 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;
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;
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;
         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          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(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                            message.append("-Obtained by: ").append(loc != null ? loc.getProvider() : "-").append("\n");
206                            message.append("-Accuracy: ").append(loc != null ? (int)loc.getAccuracy() : "-").append("m\n");
207                            message.append("-Latitude: ").append(loc != null ? loc.getLatitude() : "-").append("\n");
208                            message.append("-Longitude: ").append(loc != null ? loc.getLongitude() : "-").append("\n");
209                            MessageBox.showMessage(this, message.toString());
210                            break;
211                    default:
212                            retval = super.onOptionsItemSelected(item);
213                    }
214                    
215                    return retval;
216            }
217            
218            
219    
220            @Override
221            public boolean onContextItemSelected(MenuItem item) {
222                    contextMenu.onContextItemSelected(item);
223                    return true;
224    
225    
226            }
227    
228    
229    
230    
231            @Override
232          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
233                  switch (id) {                  switch (id) {
234                  case DLG_PROGRESS:                  case DLG_PROGRESS:
235                          ProgressDialog dlg = new ProgressDialog(this);                          ProgressDialog dlg = new ProgressDialog(this);
236                          dlg.setMessage("Wait for location fix");                          dlg.setMessage("Wait for location fix");
237                          dlg.setCancelable(false);                          dlg.setCancelable(false);
238                          return dlg;                          return dlg;                    
239                    case DLG_STATIONNAME:
240                            LayoutInflater factory = LayoutInflater.from(this);
241                            final View rootView = factory.inflate(R.layout.textinput, null);
242                            
243                            
244                            AlertDialog.Builder builder = new AlertDialog.Builder(this);
245                            
246                            builder.setTitle("Station search");
247                            builder.setView(rootView);
248                            builder.setCancelable(true);
249                            builder.setPositiveButton("Search", new DialogInterface.OnClickListener() {
250                                    public void onClick(DialogInterface dialog, int which) {
251                                            EditText et = (EditText) rootView.findViewById(R.id.EditText);
252                                            dialog.dismiss();
253                                            if (et.getText().toString().length() >= 2) {
254                                                    startNameSearch(et.getText().toString());
255                                            } else {
256                                                    MessageBox.showMessage(StationList.this, "Two characters minimum" );
257                                            }
258                                    }
259                            });
260                            builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
261                                    public void onClick(DialogInterface dialog, int which) {
262                                            dialog.dismiss();
263                                    }
264                            });                    
265                            return builder.create();
266                            
267                  default:                  default:
268                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
269                  }                  }
# Line 84  public class TrainInfoList extends ListA Line 271  public class TrainInfoList extends ListA
271          }          }
272                    
273                    
   
274          @Override          @Override
275          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
276                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
277                  switch (id) {                  switch (id) {
278                  case DLG_PROGRESS:                  case DLG_PROGRESS:
279                          this.dialog = (ProgressDialog) dialog;                          this.dialog = (ProgressDialog) dialog;
280                            if (!dialogMessage.equals("")) {
281                                    this.dialog.setMessage(dialogMessage);
282                                    dialogMessage = "";
283                            }
284                          break;                          break;
285                  }                  }
286          }          }
   
         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 GOTSTATIONLIST:  
                                 dialog.dismiss();  
                                 if (locator.getStations().size() == 0)  
                                         MessageBox.showMessage(TrainInfoList.this,"Error loading station list!");  
                                 stations = locator.getStations();  
                                 adapter.setStations( stations );  
                                 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;  
                 }  
         };  
           
           
287                    
288          @Override          @Override
289          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
# Line 154  public class TrainInfoList extends ListA Line 293  public class TrainInfoList extends ListA
293    
294                  double latitude = station.getLatitude();                  double latitude = station.getLatitude();
295                  double longitude = station.getLongitude();                  double longitude = station.getLongitude();
                 String addr = station.getAddress();  
296    
                 if (addr == null || addr.trim().equals("") )  
                         addr = lookupAddress(latitude, longitude);  
297    
298                                    
299                  Intent intent = new Intent(this, DepartureList.class);                  Intent intent = new Intent(this, DepartureList.class);
300                  intent.putExtra("name", station.getName());                  intent.putExtra("name", station.getName());
                 intent.putExtra("address", addr);  
301                  intent.putExtra("distance", station.getDistance());                  intent.putExtra("distance", station.getDistance());
302                  intent.putExtra("latitude", latitude);                  intent.putExtra("latitude", latitude);
303                  intent.putExtra("longitude", longitude);                  intent.putExtra("longitude", longitude);
304                  intent.putExtra("stationid", station.getId());                  intent.putExtra("stationid", station.getId());
305                    intent.putExtra("address", station.getAddress());
306                    intent.putExtra("isregional", station.isRegional());
307                    intent.putExtra("isstrain", station.isSTrain());
308                    intent.putExtra("ismetro", station.isMetro());
309                  startActivity(intent);                  startActivity(intent);
310          }          }
311    
312            /////////////////////////////////////////////////////////////
313            //
314    
315            public void startLookup() {
316                    isRunning = true;
317                    dialogMessage = "Wait for location fix";
318                    showDialog(DLG_PROGRESS);
319                    
320                    locationLookup.locateStations();
321                    stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
322            }
323            
324            void startNameSearch(String name) {
325                    dialogMessage = "Finding stations by name";
326                    showDialog(DLG_PROGRESS);
327    
328                    findStationsTask = new FindStationsTask();
329                    findStationsTask.searchByName(name, locationLookup.getLocation());
330                    findStationsTask.execute();
331                    
332            }
333            
334            public void startFavoriteLookup() {
335                    
336                    if (favorites.size() > 0) {
337                            dialogMessage = "Loading favorites";
338                            showDialog(DLG_PROGRESS);
339    
340                            findStationsTask = new FindStationsTask();
341                            findStationsTask.searchByIds(favorites.toString(), locationLookup.getLocation());
342                            findStationsTask.execute();
343                    } else {
344                            MessageBox.showMessage(this, "Favorite list is empty");
345                    }
346            }
347    
348    
349            
350            void startLocatorTask()
351            {
352                    dialogMessage = "Finding nearby stations";
353                    showDialog(DLG_PROGRESS);
354                    
355                    findStationsTask = new FindStationsTask();
356                    findStationsTask.searchByLocation( locationLookup.getLocation() );
357                    findStationsTask.execute();    
358            }
359            
360    
361            /* TODO: Remove this no longer needed function
362          String lookupAddress(double latitude, double longitude) {          String lookupAddress(double latitude, double longitude) {
363                                    
364                  Geocoder coder = new Geocoder(this, new Locale("da"));                  Geocoder coder = new Geocoder(this, new Locale("da"));
# Line 194  public class TrainInfoList extends ListA Line 383  public class TrainInfoList extends ListA
383                  }                  }
384                                    
385                  return sb.toString();                  return sb.toString();
386          }          }*/
387                    
388                    
389          class LocatorTask extends AsyncTask<Void,Void,Void> {          ////////////////////////////////////////////////////////////////////////////
390            // Inner classes
391    
392            class StationsFetchedHandler extends Handler {
393                    @Override
394                    public void handleMessage(Message msg) {
395    
396                            switch (msg.what) {
397                            case GOTLOCATION:
398                                    dismissDialog(DLG_PROGRESS);
399                                    
400                                    startLocatorTask();
401                                    location = GeoPair.fromLocation( locationLookup.getLocation() );
402                                    
403                                    break;
404    
405                            case NOPROVIDER:
406                                    dismissDialog(DLG_PROGRESS);
407                                    MessageBox.showMessage(StationList.this,"No location provider enabled. Plase enable gps.");
408                                    break;
409                            case LOCATIONFIXTIMEOUT:                                
410                                    if (isRunning) {
411                                            locationLookup.stopSearch();
412                                            if (locationLookup.hasLocation()) {
413                                                    stationsFetched.sendEmptyMessage( GOTLOCATION );
414                                            } else {                                                
415                                                    dismissDialog(DLG_PROGRESS);
416                                                    
417                                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
418                                                    builder.setMessage("Location fix timed out");
419                                                    builder.setCancelable(true);
420                                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
421                                                            public void onClick(DialogInterface dialog, int id) {
422                                                                    dialog.dismiss();
423                                                                    startLookup();
424                                                                    
425                                                            }
426                                                    });
427                                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
428                                                            public void onClick(DialogInterface dialog, int id) {
429                                                                    dialog.dismiss();
430                                                            }                                                      
431                                                    });                                                                                            
432                                                    builder.show();
433    
434                                            }
435                                    }
436                                    break;
437                            }
438                            isRunning = false;
439                    }
440            };
441    
442            
443            class FindStationsTask extends AsyncTask<Void,Void,Void> {
444                    
445                    LookupMethod method = LookupMethod.MethodNone;
446                    boolean success;
447                    String name;
448                    Location loc;
449                    String ids;
450                    
451                    public void searchByName(String n, Location l) {
452                            
453                            method = LookupMethod.ByName;
454                            loc = l;
455                            name = n;
456                    }
457                    
458                    public void searchByLocation(Location l) {
459                            method = LookupMethod.ByLocation;
460                            loc = l;
461                    }
462                    
463                    public void searchByIds(String id, Location l) {
464                            
465                            method = LookupMethod.ByList;
466                            loc = l;
467                            ids = id;
468                    }
469                    
470                  @Override                  @Override
471                  protected void onPreExecute() {                  protected void onPreExecute() {
472    
473                            if (method.equals(LookupMethod.MethodNone))
474                                    throw new RuntimeException("Method not set");
475                          super.onPreExecute();                          super.onPreExecute();
476                  }                  }
477                                    
478                  @Override                  @Override
479                  protected Void doInBackground(Void... params) {                  protected Void doInBackground(Void... params) {
480                          locator.findNearestStations();  
481                            switch (method) {
482                            case ByLocation:
483                                    success = stationProvider.lookupStations(loc);
484                                    break;
485                            case ByName:
486                                    success = stationProvider.lookupStationsByName(name);
487                                    break;
488                            case ByList:
489                                    success = stationProvider.lookupStationsByIds(ids);
490                                    break;
491                            default:
492                                    success = false; // not possible        
493                            }
494                            
495                            
496                            Location dummy = new Location("gps");
497                            List<StationBean> stations = stationProvider.getStations();
498                            
499                            for (StationBean station : stations) {
500                                                                    
501                                    if (method.equals(LookupMethod.ByName) || method.equals(LookupMethod.ByList)) {
502                                            if (loc != null) { //only do the distance calc if we have a location
503                                                    dummy.setLatitude(station.getLatitude());
504                                                    dummy.setLongitude(station.getLongitude());
505                                                    station.setDistance( (int)loc.distanceTo(dummy) );
506                                            } else {
507                                                    station.setDistance(0);
508                                            }
509                                    }
510    
511                            }                                              
512                                                    
513                          return null;                          return null;
514                  }                  }
# Line 214  public class TrainInfoList extends ListA Line 516  public class TrainInfoList extends ListA
516                  @Override                  @Override
517                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
518                          super.onPostExecute(result);                          super.onPostExecute(result);
519                            dialog.dismiss();
520                            
521                            
522                            if (success) {                          
523                                    if (stationProvider.getStations().size() == 0)
524                                            MessageBox.showMessage(StationList.this, "No stations found!"); // this should not be possible !?!
525                                    stations = stationProvider.getStations();
526                                    adapter.setStations( stations );                                
527                                    
528                            } else { //communication or parse errors
529                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
530                                    builder.setMessage("Error on finding nearby stations");
531                                    builder.setCancelable(true);
532                                    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
533                                            public void onClick(DialogInterface dialog, int id) {
534                                                    dialog.dismiss();
535                                                    
536                                                    stationsFetched.post( new Runnable() {
537                                                            @Override
538                                                            public void run() {
539                                                                    startLocatorTask();                                                            
540                                                            }
541                                                    });
542                                            }
543                                    });
544                                    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
545                                            public void onClick(DialogInterface dialog, int id) {
546                                                    dialog.dismiss();
547                                            }                                                      
548                                    });                                                                                            
549                                    builder.show();                        
550                            }
551                    }
552            }
553            
554            
555            class FavoritesMenu implements OnCreateContextMenuListener {
556                    private final static int FAVORITES_ADD = 9001;
557                    private final static int FAVORITES_REMOVE = 9002;
558                    
559                    private int selectedPosition;
560                    
561                    
562                    @Override
563                    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
564                                                    
565                            AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
566                            selectedPosition = info.position;
567                            int stationID = stations.get(selectedPosition).getId();
568    
569                            if (!favorites.contains(stationID)) {
570                                    menu.add(0, FAVORITES_ADD, 0, "Add to favorites");
571                            } else {
572                                    menu.add(0, FAVORITES_REMOVE, 0, "Remove from favorites");
573                            }
574                            
575                    }
576                    
577                    public void onContextItemSelected(MenuItem item) {
578                            StationBean sb = stations.get(selectedPosition);
579                            
580                            int stationID = sb.getId();
581                            if (item.getItemId() == FAVORITES_ADD) {
582                                    favorites.add(stationID);
583                                    Toast.makeText(StationList.this, "Station added", Toast.LENGTH_SHORT).show();
584                            } else {
585                                    
586                                    favorites.remove(stationID);
587                                    Toast.makeText(StationList.this, "Station removed", Toast.LENGTH_SHORT).show();
588                                    
589                                    
590                                    if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
591                                            stations.remove(selectedPosition);
592                                            adapter.notifyDataSetChanged();
593                                    }
594                            }
595                            Editor ed = prefs.edit();
596                            ed.putString("favorites", favorites.toString());
597                            ed.commit();
598                  }                  }
599          }          }
600  }  }

Legend:
Removed from v.310  
changed lines
  Added in v.552

  ViewVC Help
Powered by ViewVC 1.1.20