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

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

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

revision 490 by torben, Thu Oct 29 19:27:29 2009 UTC revision 499 by torben, Fri Nov 6 06:58:29 2009 UTC
# Line 5  import java.util.List; Line 5  import java.util.List;
5  import java.util.Map;  import java.util.Map;
6    
7  import android.content.Context;  import android.content.Context;
 import android.util.Log;  
8  import android.view.LayoutInflater;  import android.view.LayoutInflater;
9  import android.view.View;  import android.view.View;
10  import android.view.ViewGroup;  import android.view.ViewGroup;
# Line 63  public class DepartureListAdapter extend Line 62  public class DepartureListAdapter extend
62          public View getView(int position, View convertView, ViewGroup parent) {          public View getView(int position, View convertView, ViewGroup parent) {
63                  DepartureBean station = departures.get(position);                  DepartureBean station = departures.get(position);
64    
65                                    View root = inflater.inflate(R.layout.departurerow , parent, false);
                 View root;  
                 if (convertView == null || convertView.getId() != R.id.DepartureRow ) {  
                         root = inflater.inflate(R.layout.departurerow , parent, false);  
                 } else {  
                         root = convertView;  
                 }  
   
66                                    
67                  ((TextView) root.findViewById(R.id.Time)).setText(station.getTime());                  ((TextView) root.findViewById(R.id.Time)).setText(station.getTime());
68                  ((TextView) root.findViewById(R.id.Destination)).setText(station.getDestination());                  ((TextView) root.findViewById(R.id.Destination)).setText(station.getDestination());
# Line 78  public class DepartureListAdapter extend Line 70  public class DepartureListAdapter extend
70                  if (station.getStatus().length() > 0 || station.getNote().length() > 0) {                  if (station.getStatus().length() > 0 || station.getNote().length() > 0) {
71                          ImageView image = (ImageView) root.findViewById(R.id.InfoIcon);                          ImageView image = (ImageView) root.findViewById(R.id.InfoIcon);
72                                                    
73                            String status = station.getStatus().toLowerCase();
74                            String note = station.getNote().toLowerCase();
75                            
76                          int iconID;                          int iconID;
77                          if (station.getStatus().toLowerCase().indexOf("aflyst") > -1 ||                          if (status.indexOf("aflyst") > -1 || note.indexOf("aflyst") > -1 ) {
                                         station.getNote().toLowerCase().indexOf("aflyst") > -1 ) {  
78                                  iconID = R.drawable.warn20;                                  iconID = R.drawable.warn20;
79                            } else if (note.indexOf("kører kun til") > -1 || note.indexOf("afgår fra") > -1) { //If these strings are present, the train only covers part of the line
80                                    iconID = R.drawable.warnyellow20;
81                          } else {                          } else {
82                                  iconID = R.drawable.info20;                                  iconID = R.drawable.info20;
83                          }                          }

Legend:
Removed from v.490  
changed lines
  Added in v.499

  ViewVC Help
Powered by ViewVC 1.1.20