/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/TimetableList.java
ViewVC logotype

Diff of /android/TrainInfo/src/dk/thoerup/traininfo/TimetableList.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 561 by torben, Thu Jan 28 08:55:19 2010 UTC revision 906 by torben, Fri Jun 25 23:59:58 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
3    
4    import static dk.thoerup.traininfo.R.string.generic_cancel;
5    import static dk.thoerup.traininfo.R.string.generic_retry;
6    import static dk.thoerup.traininfo.R.string.timetablelist_fetchdata;
7    import static dk.thoerup.traininfo.R.string.timetablelist_fetcherror;
8    import static dk.thoerup.traininfo.R.string.timetablelist_nodata;
9    
10  import java.util.ArrayList;  import java.util.ArrayList;
11  import java.util.List;  import java.util.List;
12    
 import android.app.Activity;  
13  import android.app.AlertDialog;  import android.app.AlertDialog;
14  import android.app.Dialog;  import android.app.Dialog;
15    import android.app.ListActivity;
16  import android.app.ProgressDialog;  import android.app.ProgressDialog;
17  import android.content.DialogInterface;  import android.content.DialogInterface;
18  import android.content.Intent;  import android.content.Intent;
19  import android.os.AsyncTask;  import android.os.AsyncTask;
20  import android.os.Bundle;  import android.os.Bundle;
21    import android.util.Log;
22    import android.view.View;
23  import android.widget.ListView;  import android.widget.ListView;
24  import android.widget.TextView;  import android.widget.TextView;
25    import android.widget.Toast;
26  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
27  import dk.thoerup.traininfo.provider.TimetableProvider;  import dk.thoerup.traininfo.provider.TimetableProvider;
28  import dk.thoerup.traininfo.util.MessageBox;  import dk.thoerup.traininfo.util.MessageBox;
 import static dk.thoerup.traininfo.R.string.*;  
29    
30  public class TimetableList extends Activity {  public class TimetableList extends ListActivity {
31                    
32          private static final int DLG_PROGRESS = 8000;          private static final int DLG_PROGRESS = 8000;
33          DepartureBean departure;          DepartureBean departure;
# Line 37  public class TimetableList extends Activ Line 45  public class TimetableList extends Activ
45                                    
46                  provider = ProviderFactory.getTimetableProvider();                  provider = ProviderFactory.getTimetableProvider();
47                                    
48                  adapter = new TimetableListAdapter(this);                  adapter = new TimetableListAdapter(this);              
49                                    setListAdapter(adapter);
50                  ListView lv = (ListView) findViewById(R.id.List);  
                 lv.setAdapter(adapter);  
51    
52                                    
53                  Intent launchedBy = getIntent();                  Intent launchedBy = getIntent();
# Line 50  public class TimetableList extends Activ Line 57  public class TimetableList extends Activ
57                  ((TextView)findViewById(R.id.Status)).setText(departure.getStatus());                  ((TextView)findViewById(R.id.Status)).setText(departure.getStatus());
58                  ((TextView)findViewById(R.id.Location)).setText(departure.getLocation());                  ((TextView)findViewById(R.id.Location)).setText(departure.getLocation());
59                  ((TextView)findViewById(R.id.Note)).setText(departure.getNote());                  ((TextView)findViewById(R.id.Note)).setText(departure.getNote());
60                  ((TextView)findViewById(R.id.Updated)).setText(departure.getLastUpdateString());                  ((TextView)findViewById(R.id.Updated)).setText(departure.getLastUpdateString(this));
61                                                                                                    
62                                    
63                  if (savedInstanceState == null) {                  if (savedInstanceState == null) {
# Line 61  public class TimetableList extends Activ Line 68  public class TimetableList extends Activ
68                  }                  }
69          }          }
70                    
71      @Override          
72        @Override
73            protected void onListItemClick(ListView l, View v, int position, long id) {
74                    super.onListItemClick(l, v, position, id);
75    
76                    TimetableBean tt = timetables.get(position);
77                    
78                    StationBean station = new StationBean();
79                    station.setName( tt.getStation() );
80                    station.setId( tt.getStationId() );
81                    station.setRegional(true);
82                    
83                    Intent intent = new Intent(this, DepartureList.class);
84                    intent.putExtra("stationbean", station);
85                    startActivity(intent);
86                    
87            }
88        
89    
90    
91            @Override
92      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
93      {                {          
94          dismissDialog(DLG_PROGRESS);          dismissDialog(DLG_PROGRESS);
95          outState.putSerializable("timetables", (ArrayList<TimetableBean>) timetables);          outState.putSerializable("timetables", (ArrayList<TimetableBean>) timetables);
96      }      }
97    
 /*              case DLG_DETAILS:  
                         DepartureBean currentDeparture = departures.get(selectedItemId);  
                         ((TextView)dialog.findViewById(R.id.Time)).setText(currentDeparture.getTime());  
                         ((TextView)dialog.findViewById(R.id.Train)).setText(currentDeparture.getTrainNumber());  
                         ((TextView)dialog.findViewById(R.id.Destination)).setText( currentDeparture.getDestination());  
                         ((TextView)dialog.findViewById(R.id.Origin)).setText(currentDeparture.getOrigin());  
                         ((TextView)dialog.findViewById(R.id.Location)).setText(currentDeparture.getLocation());  
                         ((TextView)dialog.findViewById(R.id.Updated)).setText(currentDeparture.getLastUpdateString());  
                         ((TextView)dialog.findViewById(R.id.Status)).setText(currentDeparture.getStatus());  
                         ((TextView)dialog.findViewById(R.id.Note)).setText(currentDeparture.getNote());  
                         detailsDialog = dialog;  
                         break;  
   
  */  
98                    
99          @Override          @Override
100          protected void onPrepareDialog(int id, Dialog dialog) {          protected void onPrepareDialog(int id, Dialog dialog) {
# Line 110  public class TimetableList extends Activ Line 123  public class TimetableList extends Activ
123          void startTimetableFetcher() {          void startTimetableFetcher() {
124                  showDialog(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
125                  fetcher = new TimetableFetcher();                  fetcher = new TimetableFetcher();
126                  fetcher.execute(departure.getTrainNumber());                  fetcher.execute(departure.getType(), departure.getTrainNumber());
127          }          }
128                    
129          class TimetableFetcher extends AsyncTask<String,Void,Void> {          class TimetableFetcher extends AsyncTask<String,Void,Void> {
# Line 126  public class TimetableList extends Activ Line 139  public class TimetableList extends Activ
139                          if (success) {                          if (success) {
140                                  adapter.setTimetable(timetables);                                  adapter.setTimetable(timetables);
141                                  if (timetables.size() == 0) {                                  if (timetables.size() == 0) {
142                                          MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata));                                          MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);
143                                  }                                  }
144                          } else { // communication or parse error                          } else { // communication or parse error
145                                  AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                                                                AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                              
# Line 142  public class TimetableList extends Activ Line 155  public class TimetableList extends Activ
155                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
156                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
157                                                  dialog.dismiss();                                                  dialog.dismiss();
158                                                    TimetableList.this.finish();
159                                          }                                                                                                }                                                      
160                                  });                                                                                                                              });
161                                  builder.show();                                                          
162                                    try {
163                                            builder.show();
164                                    } catch (android.view.WindowManager.BadTokenException e) {                                      
165                                            Log.i("TimetableList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
166                                    }
167                                                                    
168                          }                          }
169                                                    
170                  }                  }
171                                    
172                  @Override                  @Override
173                  protected Void doInBackground(String... arg0) {                  protected Void doInBackground(String... arg0) {
174                          String trainID = arg0[0];                          String type = arg0[0];
175                          success = provider.lookupTimetable(trainID);                          String trainID = arg0[1];
176                          timetables = provider.getTimetable(trainID);                          success = provider.lookupTimetable(type, trainID);
177                            timetables = provider.getTimetable(type, trainID);
178                                                    
179                          return null;                          return null;
180                  }                  }

Legend:
Removed from v.561  
changed lines
  Added in v.906

  ViewVC Help
Powered by ViewVC 1.1.20