/[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 302 by torben, Mon Sep 7 13:23:48 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/StationList.java revision 918 by torben, Sat Jun 26 11:02:53 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.Activity;
8    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;
13  import android.content.Intent;  import android.content.Intent;
14  import android.location.Address;  import android.content.SharedPreferences;
15  import android.location.Geocoder;  import android.content.SharedPreferences.Editor;
16    import android.location.Location;
17  import android.os.AsyncTask;  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;  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;  import dk.thoerup.traininfo.util.MessageBox;
40    
41  public class TrainInfoList extends ListActivity  {  import static dk.thoerup.traininfo.R.string.*;
42          public static final int GOTLOCATION = 1;  
43          public static final int GOTSTATIONLIST = 2;  public class StationList extends ListActivity  {
44          public static final int NOPROVIDER = 3;          public static final int GOTLOCATION = 1001;
45          public static final int FIXTIMEOUT = 4;          public static final int GOTSTATIONLIST = 1002;
46          public static final int LOOKUPSTATIONFAILED = 5;          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    
52            
53    
54                    
55          public static final int DLG_PROGRESS = 1;          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          LocatorTask locatorTask = new LocatorTask();          FindStationsTask findStationsTask;
70            StationsFetchedHandler stationsFetched = new StationsFetchedHandler();
71                    
72            GeoPair location = new GeoPair();
73    
74            boolean isLaunchedforShortcut;
75          boolean isRunning = false;          boolean isRunning = false;
76          List<StationBean> stations = new ArrayList<StationBean>();          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")          @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                                    
                 StationLocator.removeMockLocation(this);  
                 //StationLocator.injectMockLocation(this);  
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) {                  if (savedInstanceState == null) {
119                          startLookup();  
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 {                  } else {
136                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");                          stations = (ArrayList<StationBean>) savedInstanceState.getSerializable("stations");
137                          adapter.setStations(stations);                          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      @Override
217      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
218      {      {
219          if (dialog != null && dialog.isShowing())          if (dialog != null && dialog.isShowing())
220                  dialog.dismiss();                  dialog.dismiss();
221          outState.putSerializable("stations", (ArrayList<StationBean>) stations);          outState.putSerializable("stations", (ArrayList<StationBean>) stations);
222            outState.putSerializable("location", location);
223            
224      }      }
225                    
226                    
227    
228          @Override          @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                    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
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 84  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                    super.onListItemClick(l, v, position, id);
370                                    
371                    StationBean station = stations.get(position);
372                    
373                    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                    showDialogSafe(DLG_PROGRESS);
392                                    
393                  locator.locateStations();                  locationLookup.locateStations();
394                  stationsFetched.sendEmptyMessageDelayed(FIXTIMEOUT, 20000);                  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            }
406            
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                                  locatorTask.execute();                                  
445                                  break;                                  startLocatorTask();
446                          case GOTSTATIONLIST:                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
447                                  dialog.dismiss();                                  
                                 if (locator.getStations().size() == 0)  
                                         MessageBox.showMessage(TrainInfoList.this,"Error loading station list!");  
                                 stations = locator.getStations();  
                                 adapter.setStations( stations );  
448                                  break;                                  break;
449    
450                          case NOPROVIDER:                          case NOPROVIDER:
451                                  dialog.dismiss();                                  dismissDialogSafe(DLG_PROGRESS);
452                                  MessageBox.showMessage(TrainInfoList.this,"No location provider enabled. Plase enable 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                                          if (locator.hasLocation()) {                                          if (locationLookup.hasLocation()) {
459                                                  msg.what = GOTLOCATION;                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );
460                                                  handleMessage( msg ); // ToDo: ugly recursive call !!!                                          } else {                                                
461                                          } else {                                                  dismissDialogSafe(DLG_PROGRESS);
462                                                  MessageBox.showMessage(TrainInfoList.this,"GPS fix timed out");                                                  
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();  
                                 MessageBox.showMessage(TrainInfoList.this,"Error on finding nearby stations");  
                                 break;  
483                          }                          }
484                          isRunning = false;                          isRunning = false;
485                  }                  }
486          };          };
           
           
           
         @Override  
         protected void onListItemClick(ListView l, View v, int position, long id) {  
                 super.onListItemClick(l, v, position, id);  
                                   
                 StationBean station = stations.get(position);  
   
                 double latitude = station.getLatitude();  
                 double longitude = station.getLongitude();  
                 String addr = station.getAddress();  
   
                 if (addr == null || addr.trim().equals("") )  
                         addr = lookupAddress(latitude, longitude);  
487    
488            
489            class FindStationsTask extends AsyncTask<Void,Void,Void> {
490                                    
491                  Intent intent = new Intent(this, DepartureList.class);                  LookupMethod method = LookupMethod.MethodNone;
492                  intent.putExtra("name", station.getName());                  boolean success;
493                  intent.putExtra("address", addr);                  String name;
494                  intent.putExtra("distance", station.getDistance());                  Location loc;
495                  intent.putExtra("latitude", latitude);                  String ids;
                 intent.putExtra("longitude", longitude);  
                 intent.putExtra("code", station.getCode());  
                 startActivity(intent);  
         }  
   
         String lookupAddress(double latitude, double longitude) {  
496                                    
497                  Geocoder coder = new Geocoder(this, new Locale("da"));                  public void searchByName(String n) {
                 StringBuilder sb = new StringBuilder();  
                 Log.i("lookupaddr", "" + latitude + "/" + longitude);  
                 try {  
                         List<Address> addressList = coder.getFromLocation(latitude, longitude, 1);  
                         Address addr = addressList.get(0);  
                           
                           
                         int max = addr.getMaxAddressLineIndex();  
                         for (int i=0; i<max; i++) {  
                                 if (i>0)  
                                         sb.append(", ");  
                                   
                                 sb.append(addr.getAddressLine(i));  
                         }  
498                                                    
499                            method = LookupMethod.ByName;
500                            name = n;
501                    }
502                    
503                    public void searchByLocation(Location l) {
504                            method = LookupMethod.ByLocation;
505                            loc = l;
506                    }
507                    
508                    public void searchByIds(String id) {
509                                                    
510                  } catch (Exception e) {                          method = LookupMethod.ByList;
511                          Log.e("DepartureList", "geocoder failed", e);                          ids = id;
512                  }                  }
513                                    
                 return sb.toString();  
         }  
           
           
         class LocatorTask extends AsyncTask<Void,Void,Void> {  
514                  @Override                  @Override
515                  protected void onPreExecute() {                  protected void onPreExecute() {
516    
517                            if (method.equals(LookupMethod.MethodNone))
518                                    throw new RuntimeException("Method not set");
519                          super.onPreExecute();                          super.onPreExecute();
520                  }                  }
521                                    
522                  @Override                  @Override
523                  protected Void doInBackground(Void... params) {                  protected Void doInBackground(Void... params) {
524                          locator.findNearestStations();  
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                                                    
540                          return null;                          return null;
541                  }                  }
# Line 214  public class TrainInfoList extends ListA Line 543  public class TrainInfoList extends ListA
543                  @Override                  @Override
544                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
545                          super.onPostExecute(result);                          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.302  
changed lines
  Added in v.918

  ViewVC Help
Powered by ViewVC 1.1.20