--- android/TrainInfo/src/dk/thoerup/traininfo/WelcomeScreen.java 2011/11/27 19:22:59 1637 +++ android/TrainInfo/src/dk/thoerup/traininfo/WelcomeScreen.java 2011/11/27 19:44:28 1638 @@ -184,8 +184,11 @@ message.append("By Torben H. Nielsen\n"); MessageBox.showMessage(WelcomeScreen.this, message.toString());*/ - Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://t-hoerup.dk/android/traininfo/")); - startActivity(browserIntent); + /*Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://t-hoerup.dk/android/traininfo/")); + startActivity(browserIntent);*/ + + Intent intent = new Intent(WelcomeScreen.this, AboutScreen.class); + WelcomeScreen.this.startActivity(intent); } }