/[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 244 by torben, Sun Aug 9 17:46:09 2009 UTC revision 351 by torben, Mon Sep 28 21:39:49 2009 UTC
# Line 59  public class DepartureListAdapter extend Line 59  public class DepartureListAdapter extend
59                  ((TextView) root.findViewById(R.id.Destination)).setText(station.getDestination());                  ((TextView) root.findViewById(R.id.Destination)).setText(station.getDestination());
60                                    
61                  if (station.getStatus().length() > 0 || station.getNote().length() > 0) {                  if (station.getStatus().length() > 0 || station.getNote().length() > 0) {
62                          ImageView image = (ImageView) root.findViewById(R.id.Icon);                          ImageView image = (ImageView) root.findViewById(R.id.InfoIcon);
63                          image.setImageResource(R.drawable.info20);                          image.setImageResource(R.drawable.info20);
64                  }                  }
65                                    
66                    ImageView typeIcon = (ImageView) root.findViewById(R.id.TypeIcon);
67                    String trainNumber = station.getTrainNumber().trim();
68                    String code = trainNumber.split(" ")[0];
69                    
70                    
71                    
72                    if ( code.equalsIgnoreCase("ra")) { //ra = regionaltog arriva
73                            typeIcon.setImageResource(R.drawable.re);
74                    } else if ( code.equalsIgnoreCase("re")) {
75                            typeIcon.setImageResource(R.drawable.re);
76                    } else if ( code.equalsIgnoreCase("l")) {
77                            typeIcon.setImageResource(R.drawable.lyn);
78                    } else if ( code.equalsIgnoreCase("ic")) {
79                            typeIcon.setImageResource(R.drawable.ic);
80                    } else if ( code.equalsIgnoreCase("pp")) {
81                            typeIcon.setImageResource(R.drawable.pp);
82                    } else if ( code.equalsIgnoreCase("ør")) {
83                            typeIcon.setImageResource(R.drawable.or);
84                    } else if ( code.equalsIgnoreCase("a") ) {
85                            typeIcon.setImageResource(R.drawable.stog_a); //S-Tog: A banen #00b5f1
86                    } else if ( code.equalsIgnoreCase("b") ) {
87                            typeIcon.setImageResource(R.drawable.stog_b); //S-Tog:B banen #5aba52
88                    } else if ( code.equalsIgnoreCase("bx") ) {
89                            typeIcon.setImageResource(R.drawable.stog_bx); //S-Tog:Bx banen #a4d17d
90                    } else if ( code.equalsIgnoreCase("c") ) {
91                            typeIcon.setImageResource(R.drawable.stog_c); //S-Tog:C banen #f89734
92                    } else if ( code.equalsIgnoreCase("e") ) {
93                            typeIcon.setImageResource(R.drawable.stog_e); //S-Tog:E banen #837eba
94                    } else if ( code.equalsIgnoreCase("f") ) {
95                            typeIcon.setImageResource(R.drawable.stog_f); //S-Tog:F banen #ffc32d
96                    } else if ( code.equalsIgnoreCase("h") ) {
97                            typeIcon.setImageResource(R.drawable.stog_h); //S-Tog:H banen #f05737
98                    }  else {
99                            typeIcon.setImageResource(R.drawable.unknown);
100                    }
101                    //Mangler: SJ=Sverige?, EC,      
102                    
103                    
104                                    
105                  return root;                  return root;
106          }          }

Legend:
Removed from v.244  
changed lines
  Added in v.351

  ViewVC Help
Powered by ViewVC 1.1.20