--- android/TrainInfo/src/dk/thoerup/traininfo/DepartureList.java 2010/09/16 16:51:20 1071 +++ android/TrainInfo/src/dk/thoerup/traininfo/DepartureList.java 2010/09/16 17:13:51 1072 @@ -424,6 +424,7 @@ TextView h1 = new TextView(this); h1.setText("Metro"); + h1.setTextSize(16); h1.setTypeface( Typeface.defaultFromStyle(Typeface.BOLD)); @@ -434,9 +435,12 @@ TextView h2 = new TextView(this); + h2.setTextSize(16); h2.setTypeface( Typeface.defaultFromStyle(Typeface.BOLD)); h2.setText("Om minutter"); + params = new TableRow.LayoutParams(); + params.weight = 2; head.addView(h2,params); @@ -449,14 +453,17 @@ Log.e("Test", "" + entry.destination); TextView v1 = new TextView(this); - v1.setText( entry.metro ); + v1.setTextSize(16); + v1.setText( entry.metro ); row.addView(v1); TextView v2 = new TextView(this); + v2.setTextSize(16); v2.setText( entry.destination ); row.addView(v2); TextView v3 = new TextView(this); + v3.setTextSize(16); v3.setText( entry.minutes ); row.addView(v3);