/[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 239 by torben, Sun Aug 9 09:09:16 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/StationList.java revision 918 by torben, Sat Jun 26 11:02:53 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
3    import java.util.ArrayList;
4    import java.util.List;
5    
6    
7    import android.app.Activity;
8  import android.app.AlertDialog;  import android.app.AlertDialog;
9  import android.app.Dialog;  import android.app.Dialog;
10  import android.app.ListActivity;  import android.app.ListActivity;
11  import android.app.ProgressDialog;  import android.app.ProgressDialog;
12  import android.content.DialogInterface;  import android.content.DialogInterface;
13  import android.content.Intent;  import android.content.Intent;
14    import android.content.SharedPreferences;
15    import android.content.SharedPreferences.Editor;
16    import android.location.Location;
17    import android.os.AsyncTask;
18  import android.os.Bundle;  import android.os.Bundle;
19  import android.os.Handler;  import android.os.Handler;
20  import android.os.Message;  import android.os.Message;
21    
22    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;
35    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;
40    
41    import static dk.thoerup.traininfo.R.string.*;
42    
43    public class StationList extends ListActivity  {
44            public static final int GOTLOCATION = 1001;
45            public static final int GOTSTATIONLIST = 1002;
46            public static final int NOPROVIDER = 1003;
47            public static final int LOCATIONFIXTIMEOUT = 1004;
48            
49            public static final int OPTIONS_MAP = 2003;
50            public static final int OPTIONS_GPSINFO = 2004;
51    
 public class TrainInfoList extends ListActivity  {  
         public static final int GOTLOCATION = 1;  
         public static final int GOTSTATIONLIST = 2;  
         public static final int NOPROVIDER = 3;  
         public static final int FIXTIMEOUT = 4;  
         public static final int LOOKUPSTATIONFAILED = 5;  
52                    
53          public static final int DLG_PROGRESS = 1;  
54            
55            public static final int DLG_PROGRESS = 3001;
56            public static final int DLG_STATIONNAME = 3002;
57                    
58          /** Called when the activity is first created. */          static enum LookupMethod {
59                    ByLocation,
60                    ByName,
61                    ByList,
62                    MethodNone
63            }
64            
65            
66            String dialogMessage = "";
67          ProgressDialog dialog;          ProgressDialog dialog;
68          StationLocator locator = null;          LocationLookup locationLookup = null;
69            FindStationsTask findStationsTask;
70            StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
71                    
72          boolean isRunning;          GeoPair location = new GeoPair();
73    
74            boolean isLaunchedforShortcut;
75            boolean isRunning = false;
76            List<StationBean> stations = new ArrayList<StationBean>();
77            
78            StationProvider stationProvider = ProviderFactory.getStationProvider();
79                    
80          StationListAdapter adapter = null;          StationListAdapter adapter = null;
81            
82            FavoritesMenu contextMenu = new FavoritesMenu();
83            IntSet favorites = new IntSet();
84    
85            WelcomeScreen.ListType listType;
86            SharedPreferences prefs;
87            
88            ///////////////////////////////////////////////////////////////////////////////////////////
89            //Activity call backs
90            
91            @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.stationlist);
96                    
97                                    
98                  adapter = new StationListAdapter(this);                  adapter = new StationListAdapter(this);
99                  setListAdapter(adapter);                  setListAdapter(adapter);
100                                    
101                  locator = new StationLocator(this, stationsFetched);                  ListView lv = getListView();
102                    lv.setOnCreateContextMenuListener(contextMenu);
103                    
104                    locationLookup = 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                    listType = (WelcomeScreen.ListType) getIntent().getSerializableExtra("type");
114                    setTitle();
115                    
116                    isLaunchedforShortcut = getIntent().getBooleanExtra("shortcut", false);
117                    
118                    if (savedInstanceState == null) {
119    
120                            
121                            switch (listType) {
122                            case ListNearest:
123                                    startLookup();
124                                    break;
125                            case ListSearch:
126                                    this.showDialogSafe(DLG_STATIONNAME);
127                                    break;
128                            case ListFavorites:
129                                    startFavoriteLookup();
130                                    break;
131                            default:
132                                    // Not possible !?!
133                            }
134                            
135                    } else {
136                            stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
137                            adapter.setStations(stations);
138                            location = (GeoPair) savedInstanceState.getSerializable("location");
139                    }
140                    
141            }
142            
143    
144            @Override
145            protected void onDestroy() {
146                    super.onDestroy();
147                    
148                    if (findStationsTask != null) {
149                            findStationsTask.cancel(true);
150                    }
151            }
152    
153            
154            protected void setTitle() {
155                    String dialogTitle = getResources().getString(app_name);
156                    switch (listType) {
157                    case ListNearest:
158                            dialogTitle += " - " + getString(stationlist_nearbystations);
159                            break;
160                    case ListSearch:
161                            dialogTitle += " - " + getString(stationlist_search);
162                            break;
163                    case ListFavorites:
164                            dialogTitle += " - " + getString(stationlist_favorites);
165                            break;
166                    default:
167                            dialogTitle = "";//not possible                                
168                    }
169            
170                    setTitle(dialogTitle);
171                    
172            }
173            
174            
175            /* these 3 dialogs helper functions are very rude and ugly hack
176             * to remove these auto-reported exceptions
177             * - android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@436aaef8 is not valid; is your activity running?
178             * - java.lang.IllegalArgumentException: View not attached to window manager
179             */
180            
181            public void showDialogSafe(int id) {
182                    try {
183                            showDialog(id);
184                    } catch (Exception e) {
185                            Log.e("StationList", "showDialog failed", e);
186                    }
187            }
188            
189            public void dismissDialogSafe(int id) {
190                    try {
191                            dismissDialog(id);
192                    } catch (Exception e) {
193                            Log.e("StationList", "dismissDialog failed", e);
194                    }
195            }
196            public void dismissDialogSafe(Dialog dlg) {
197                    try {
198                            dlg.dismiss();
199                    } catch (Exception e) {
200                            Log.e("StationList", "dismissDialog failed", e);
201                    }
202            }
203            
204            public void builderShowSafe(AlertDialog.Builder builder) {
205                    try {
206                            builder.show();
207                    } catch (Exception e) {
208                            Log.e("StationList", "builder.show() failed", e);
209                    }
210                    
211            }
212            /* EOF rude and ugly dialog hack */
213            
214    
215    
216        @Override
217        public void onSaveInstanceState(Bundle outState)
218        {
219            if (dialog != null && dialog.isShowing())
220                    dialog.dismiss();
221            outState.putSerializable("stations", (ArrayList<StationBean>) stations);
222            outState.putSerializable("location", location);
223            
224        }
225            
226            
227    
228            @Override
229            public boolean onCreateOptionsMenu(Menu menu) {
230                    MenuItem item;
231                    
232                    item = menu.add(0, OPTIONS_MAP, 0, getString(stationlist_stationmap));
233                    item.setIcon(android.R.drawable.ic_menu_mapmode);
234                                    
235                  startLookup();                  item = menu.add(0, OPTIONS_GPSINFO, 0, getString(stationlist_gpsinfo));
236                    item.setIcon(android.R.drawable.ic_menu_mapmode);              
237                    
238                    return true;
239            }
240    
241            @Override
242            public boolean onOptionsItemSelected(MenuItem item) {
243                    boolean retval = true;
244    
245                    //TODO: Cleanup
246                    switch (item.getItemId()) {
247                    case OPTIONS_MAP:
248                            
249                            Intent intent = new Intent(this,StationMapView.class);
250                            
251                            ArrayList<GeoPair> stationPoints = new ArrayList<GeoPair>();
252                            for (StationBean st : stations ) {
253                                    stationPoints.add( new GeoPair(st.getLatitude(), st.getLongitude(), st.getName()) );
254                            }
255                            
256                            intent.putExtra("stations", stationPoints);
257                            
258                            startActivity(intent);
259                            break;
260                    case OPTIONS_GPSINFO:
261                            Location loc = locationLookup.getLocation();
262                            StringBuffer message = new StringBuffer();
263                            message.append( getString(stationlist_locationinfo) ).append(":\n");
264                            if (loc != null) {
265                                    message.append( getString(stationlist_obtainedby) ).append( loc.getProvider() ).append("\n");
266                                    message.append( getString(stationlist_accuracy) ).append( (int)loc.getAccuracy()).append("m\n");
267                                    message.append( getString(stationlist_latitude) ).append( (float)loc.getLatitude()).append("\n");
268                                    message.append( getString(stationlist_longitude) ).append( (float)loc.getLongitude() ).append("\n");
269                            } else {
270                                    message.append( getString(stationlist_nolocation) );
271                            }                      
272                            
273                            MessageBox.showMessage(this, message.toString(), false);
274                            break;
275                    default:
276                            retval = super.onOptionsItemSelected(item);
277                    }
278                    
279                    return retval;
280          }          }
281                    
282                    
283    
284          @Override          @Override
285            public boolean onContextItemSelected(MenuItem item) {
286                    contextMenu.onContextItemSelected(item);
287                    return true;
288    
289    
290            }
291            
292            public void showMessageAndClose(String message) {
293                    AlertDialog.Builder builder = new AlertDialog.Builder(this);
294                    builder.setMessage(message)
295                    .setCancelable(false)
296                    .setPositiveButton("OK", new DialogInterface.OnClickListener() {
297                            public void onClick(DialogInterface dialog, int id) {
298                                    dialog.dismiss();
299                                    StationList.this.finish();
300                            }
301                    })
302                    .show();
303            }
304    
305    
306    
307    
308            @Override
309          protected Dialog onCreateDialog(int id) {          protected Dialog onCreateDialog(int id) {
310                  switch (id) {                  switch (id) {
311                  case DLG_PROGRESS:                  case DLG_PROGRESS:
312                          ProgressDialog dlg = new ProgressDialog(this);                          ProgressDialog dlg = new ProgressDialog(this);
313                          dlg.setMessage("Wait for location fix");                          dlg.setMessage( getString(stationlist_waitforlocation) );
314                          dlg.setCancelable(false);                          dlg.setCancelable(false);
315                          return dlg;                          return dlg;                    
316                    case DLG_STATIONNAME:
317                            LayoutInflater factory = LayoutInflater.from(this);
318                            final View rootView = factory.inflate(R.layout.textinput, null);
319                            
320                            
321                            AlertDialog.Builder builder = new AlertDialog.Builder(this);
322                            
323                            builder.setTitle( getString(stationlist_stationsearch) );
324                            builder.setView(rootView);
325                            builder.setCancelable(true);
326                            builder.setPositiveButton( getString(generic_search), new DialogInterface.OnClickListener() {
327                                    public void onClick(DialogInterface dialog, int which) {
328                                            EditText et = (EditText) rootView.findViewById(R.id.EditText);
329                                            dialog.dismiss();
330                                            String search = et.getText().toString().trim();
331                                            if (search.length() >= 2) {
332                                                    startNameSearch(search);
333                                            } else {
334                                                    showMessageAndClose( getString(stationlist_twocharmin) );
335                                            }
336                                    }
337                            });
338                            builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
339                                    public void onClick(DialogInterface dialog, int which) {
340                                            dialog.dismiss();
341                                            StationList.this.finish(); // Close this Activity
342                                    }
343                            });                    
344                            return builder.create();
345                            
346                  default:                  default:
347                          return super.onCreateDialog(id);                                          return super.onCreateDialog(id);                
348                  }                  }
# Line 58  public class TrainInfoList extends ListA Line 350  public class TrainInfoList extends ListA
350          }          }
351                    
352                    
   
   
353          @Override          @Override
354          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
355                  super.onPrepareDialog(id, dialog);                  super.onPrepareDialog(id, dialog);
356                  switch (id) {                  switch (id) {
357                  case DLG_PROGRESS:                  case DLG_PROGRESS:
358                          this.dialog = (ProgressDialog) dialog;                          this.dialog = (ProgressDialog) dialog;
359                            if (!dialogMessage.equals("")) {
360                                    this.dialog.setMessage(dialogMessage);
361                                    dialogMessage = "";
362                            }
363                          break;                          break;
364                  }                  }
365          }          }
366            
367            @Override
368            protected void onListItemClick(ListView l, View v, int position, long id) {
369          public void progressDialog() {                  super.onListItemClick(l, v, position, id);
370                  dialog = new ProgressDialog(this);                                  
371                  dialog.setMessage("Wait for location fix");                  StationBean station = stations.get(position);
372                  dialog.setCancelable(false);                  
373                  dialog.show();                  if (isLaunchedforShortcut == true) {
374                            Intent i = new Intent();
375                            i.putExtra("station", station);
376                            setResult(Activity.RESULT_OK, i);
377                            finish();
378                    } else {                
379                            Intent intent = new Intent(this, DepartureList.class);
380                            intent.putExtra("stationbean", station);
381                            startActivity(intent);
382                    }
383          }          }
384    
385            /////////////////////////////////////////////////////////////
386            //
387    
388          public void startLookup() {          public void startLookup() {
389                  isRunning = true;                  isRunning = true;              
390                  showDialog(DLG_PROGRESS);                  dialogMessage = getString( stationlist_waitforlocation );
391                  //progressDialog();                  showDialogSafe(DLG_PROGRESS);
392                    
393                    locationLookup.locateStations();
394                    stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, 20000);
395            }
396            
397            void startNameSearch(String name) {
398                    dialogMessage = getString( stationlist_findbyname );
399                    showDialogSafe(DLG_PROGRESS);
400    
401                    findStationsTask = new FindStationsTask();
402                    findStationsTask.searchByName(name);
403                    findStationsTask.execute();
404                                    
405                  locator.locateStations();          }
406                  stationsFetched.sendEmptyMessageDelayed(FIXTIMEOUT, 20000);                      
407            public void startFavoriteLookup() {
408                    
409                    if (favorites.size() > 0) {
410                            dialogMessage = getString( stationlist_loadfavorites );
411                            showDialogSafe(DLG_PROGRESS);
412    
413                            findStationsTask = new FindStationsTask();
414                            findStationsTask.searchByIds( favorites.toString() );
415                            findStationsTask.execute();
416                    } else {
417                            showMessageAndClose( getString( stationlist_nofavorites ) );
418                    }
419          }          }
420    
421    
422          Handler stationsFetched = new Handler() {          
423            void startLocatorTask()
424            {
425                    dialogMessage = getString( stationlist_findingnearby );
426                    showDialogSafe(DLG_PROGRESS);
427                    
428                    findStationsTask = new FindStationsTask();
429                    findStationsTask.searchByLocation( locationLookup.getLocation() );
430                    findStationsTask.execute();    
431            }
432                    
433            
434            ////////////////////////////////////////////////////////////////////////////
435            // Inner classes
436    
437            class StationsFetchedHandler extends Handler {
438                  @Override                  @Override
439                  public void handleMessage(Message msg) {                  public void handleMessage(Message msg) {
440                            
441                          switch (msg.what) {                          switch (msg.what) {
442                          case GOTLOCATION:                          case GOTLOCATION:
443                                  dialog.setMessage("Finding nearby stations");                                  dismissDialogSafe(DLG_PROGRESS);
444                                  break;                                  
445                          case GOTSTATIONLIST:                                  startLocatorTask();
446                                  dialog.dismiss();                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
447                                  adapter.setStations( locator.getStations() );                                  
448                                  break;                                  break;
449    
450                          case NOPROVIDER:                          case NOPROVIDER:
451                                  dialog.dismiss();                                  dismissDialogSafe(DLG_PROGRESS);
452                                  showMessageBox("No Location provider enabled. Plase enabled gps.");                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider), true );
453                                    //StationList.this.finish();
454                                  break;                                  break;
455                          case FIXTIMEOUT:                          case LOCATIONFIXTIMEOUT:                                
                                 dialog.dismiss();  
456                                  if (isRunning) {                                  if (isRunning) {
457                                          locator.abortLocationListener();                                          locationLookup.stopSearch();
458                                          showMessageBox("GPS fix timed out");                                          if (locationLookup.hasLocation()) {
459                                                    stationsFetched.sendEmptyMessage( GOTLOCATION );
460                                            } else {                                                
461                                                    dismissDialogSafe(DLG_PROGRESS);
462                                                    
463                                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
464                                                    builder.setMessage(  getString( stationlist_gpstimeout) );
465                                                    builder.setCancelable(true);
466                                                    builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
467                                                            public void onClick(DialogInterface dialog, int id) {
468                                                                    dialog.dismiss();
469                                                                    startLookup();
470                                                                    
471                                                            }
472                                                    });
473                                                    builder.setNegativeButton( getString(generic_cancel), new DialogInterface.OnClickListener() {
474                                                            public void onClick(DialogInterface dialog, int id) {
475                                                                    dialog.dismiss();
476                                                            }                                                      
477                                                    });
478                                                    builderShowSafe(builder); // builder.show()
479    
480                                            }
481                                  }                                  }
482                                  break;                                  break;
                         case LOOKUPSTATIONFAILED:  
                                 dialog.dismiss();  
                                 showMessageBox("Error on finding nearby stations");  
                                 break;  
483                          }                          }
                           
484                          isRunning = false;                          isRunning = false;
485                  }                  }
486          };          };
487    
488                    
489                    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);  
490                                    
491                  StationBean station = adapter.getStation(position);                  LookupMethod method = LookupMethod.MethodNone;
492                    boolean success;
493                    String name;
494                    Location loc;
495                    String ids;
496                                    
497                    public void searchByName(String n) {
498                            
499                            method = LookupMethod.ByName;
500                            name = n;
501                    }
502                                    
503                  Intent intent = new Intent(this, DepartureList.class);                  public void searchByLocation(Location l) {
504                  intent.putExtra("name", station.getName());                          method = LookupMethod.ByLocation;
505                  intent.putExtra("address", station.getAddress());                          loc = l;
506                  intent.putExtra("distance", station.getDistance());                  }
507                  intent.putExtra("latitude", station.getLatitude());                  
508                  intent.putExtra("longitude", station.getLongitude());                  public void searchByIds(String id) {
509                  startActivity(intent);                          
510          }                          method = LookupMethod.ByList;
511                            ids = id;
512                    }
513                    
514                    @Override
515                    protected void onPreExecute() {
516    
517          public void showMessageBox(String message) {                          if (method.equals(LookupMethod.MethodNone))
518                  AlertDialog.Builder builder = new AlertDialog.Builder(this);                                  throw new RuntimeException("Method not set");
519                  builder.setMessage(message)                          super.onPreExecute();
520                  .setCancelable(false)                  }
521                  .setPositiveButton("OK", new DialogInterface.OnClickListener() {                  
522                          public void onClick(DialogInterface dialog, int id) {                  @Override
523                                  dialog.dismiss();                  protected Void doInBackground(Void... params) {
524    
525                            switch (method) {
526                            case ByLocation:
527                                    success = stationProvider.lookupStations(loc);
528                                    break;
529                            case ByName:
530                                    success = stationProvider.lookupStationsByName(name);
531                                    break;
532                            case ByList:
533                                    success = stationProvider.lookupStationsByIds(ids);
534                                    break;
535                            default:
536                                    success = false; // not possible        
537                          }                          }
538                  })                          
539                  .show();                          
540                            return null;
541                    }
542    
543                    @Override
544                    protected void onPostExecute(Void result) {
545                            super.onPostExecute(result);
546                            dismissDialogSafe(dialog);
547                            
548                            
549                            if (success) {                          
550                                    if (stationProvider.getStations().size() == 0) {
551                                            showMessageAndClose(getString(stationlist_nostations));
552                                    }
553                                    stations = stationProvider.getStations();
554    
555                                    StationList.this.getListView().invalidateViews();
556                                    adapter.setStations( stations );                                
557                                    
558                                    
559                            } else { //communication or parse errors
560                                    AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
561                                    builder.setMessage(getString(stationlist_fetcherror));                          
562                                    builder.setCancelable(true);
563                                    builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
564                                            public void onClick(DialogInterface dialog, int id) {
565                                                    dialog.dismiss();
566                                                    
567                                                    Runnable runner = null;
568                                                    switch (method) {
569                                                    case ByLocation:
570                                                            runner = new Runnable() {
571                                                                    @Override
572                                                                    public void run() {
573                                                                            startLocatorTask();                                                            
574                                                                    }
575                                                            };
576                                                            break;
577                                                    case ByName:
578                                                            runner = new Runnable() {
579                                                                    @Override
580                                                                    public void run() {
581                                                                            startNameSearch( FindStationsTask.this.name );
582                                                                    }
583                                                            };
584                                                            break;
585                                                    case ByList:
586                                                            runner = new Runnable() {
587                                                                    @Override
588                                                                    public void run() {
589                                                                            startFavoriteLookup();
590                                                                    }
591                                                            };
592                                                            break;
593                                                    }
594                                                    
595                                                    stationsFetched.post( runner );
596                                            }
597                                    });
598                                    builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
599                                            public void onClick(DialogInterface dialog, int id) {
600                                                    dialog.dismiss();
601                                                    StationList.this.finish();
602                                            }                                                      
603                                    });
604                                    
605                                    builderShowSafe(builder); // builder.show()
606                            }
607                    }
608            }
609            
610            
611            class FavoritesMenu implements OnCreateContextMenuListener {
612                    private final static int FAVORITES_ADD = 9001;
613                    private final static int FAVORITES_REMOVE = 9002;
614                    
615                    private int selectedPosition;
616                    
617                    
618                    @Override
619                    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
620                                                    
621                            AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
622                            selectedPosition = info.position;
623                            int stationID = stations.get(selectedPosition).getId();
624    
625                            if (!favorites.contains(stationID)) {
626                                    menu.add(0, FAVORITES_ADD, 0, getString(stationlist_addfavorite) );
627                            } else {
628                                    menu.add(0, FAVORITES_REMOVE, 0, getString(stationlist_removefavorite) );
629                            }
630                            
631                    }
632                    
633                    public void onContextItemSelected(MenuItem item) {
634                            StationBean sb = stations.get(selectedPosition);
635                            
636                            int stationID = sb.getId();
637                            if (item.getItemId() == FAVORITES_ADD) {
638                                    favorites.add(stationID);
639                                    Toast.makeText(StationList.this, getString(stationlist_stationadded), Toast.LENGTH_SHORT).show();
640                            } else {
641                                    
642                                    favorites.remove(stationID);
643                                    Toast.makeText(StationList.this, getString(stationlist_stationremoved), Toast.LENGTH_SHORT).show();
644                                    
645                                    
646                                    if (listType.equals( WelcomeScreen.ListType.ListFavorites) ) {
647                                            stations.remove(selectedPosition);
648                                            adapter.notifyDataSetChanged();
649                                    }
650                            }
651                            Editor ed = prefs.edit();
652                            ed.putString("favorites", favorites.toString());
653                            ed.commit();
654                    }
655          }          }
656  }  }

Legend:
Removed from v.239  
changed lines
  Added in v.918

  ViewVC Help
Powered by ViewVC 1.1.20