/[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 491 by torben, Thu Oct 29 19:50:02 2009 UTC revision 546 by torben, Fri Jan 22 11:28:56 2010 UTC
# Line 70  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                          }                          }
# Line 104  public class DepartureListAdapter extend Line 108  public class DepartureListAdapter extend
108                  imageMap.put("ør", R.drawable.or); //ØR = Øresundstog                  imageMap.put("ør", R.drawable.or); //ØR = Øresundstog
109                  imageMap.put("ec", R.drawable.ec); //EC = EuroCity                  imageMap.put("ec", R.drawable.ec); //EC = EuroCity
110                  imageMap.put("sj", R.drawable.sj); // SJ=Svenska Jernbaner                  imageMap.put("sj", R.drawable.sj); // SJ=Svenska Jernbaner
111                    imageMap.put("ie", R.drawable.ie);
112                                    
113                  imageMap.put("a", R.drawable.stog_a);   //S-Tog: A banen #00b5f1                                                  imageMap.put("a", R.drawable.stog_a);   //S-Tog: A banen #00b5f1                                
114                  imageMap.put("b", R.drawable.stog_b);   //S-Tog:B banen #5aba52                  imageMap.put("b", R.drawable.stog_b);   //S-Tog:B banen #5aba52

Legend:
Removed from v.491  
changed lines
  Added in v.546

  ViewVC Help
Powered by ViewVC 1.1.20