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

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

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

revision 720 by torben, Mon May 10 19:36:43 2010 UTC revision 984 by torben, Sun Jul 11 15:29:13 2010 UTC
# Line 4  import android.app.Activity; Line 4  import android.app.Activity;
4  import android.content.Intent;  import android.content.Intent;
5  import android.net.Uri;  import android.net.Uri;
6  import android.os.Bundle;  import android.os.Bundle;
7    import android.os.Handler;
8  import android.view.View;  import android.view.View;
9  import android.view.Window;  import android.view.Window;
10  import android.view.View.OnClickListener;  import android.view.View.OnClickListener;
# Line 20  public class WelcomeScreen extends Activ Line 21  public class WelcomeScreen extends Activ
21                  ListFavorites                  ListFavorites
22          }          }
23                    
24            Handler handler = new Handler();
25            
26          @Override          @Override
27          public void onCreate(Bundle savedInstanceState) {          public void onCreate(Bundle savedInstanceState) {
28                  requestWindowFeature( Window.FEATURE_NO_TITLE );                  
29                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
30                    requestWindowFeature( Window.FEATURE_NO_TITLE );
31                  setContentView(R.layout.welcome);                  setContentView(R.layout.welcome);
32                                    
33                  Button nearestButton = (Button) findViewById(R.id.nearest);                  Button nearestButton = (Button) findViewById(R.id.nearest);
# Line 41  public class WelcomeScreen extends Activ Line 45  public class WelcomeScreen extends Activ
45                  ExceptionHandler.register(this, "http://t-hoerup.dk/android/trace.php");                  ExceptionHandler.register(this, "http://t-hoerup.dk/android/trace.php");
46                                    
47                  CheckUpdates update = new CheckUpdates();                  CheckUpdates update = new CheckUpdates();
48                  update.checkForUpdates(this, "http://t-hoerup.dk/android/traininfo/version.txt", "TrainInfo DK");                  update.checkForUpdates(this, "http://t-hoerup.dk/android/traininfo/version.txt", "TrainInfo DK", null);
49                    /*
50                    Runnable r = new Runnable() {
51                            @Override
52                            public void run() {
53                                    View splash = findViewById(R.id.splash);
54                                    splash.setVisibility(View.GONE);
55                            }
56                    };              
57                    handler.postDelayed(r, 1500);
58                    */
59          }          }
60                            
61          class AboutListener implements OnClickListener {          class AboutListener implements OnClickListener {
62    
63                  @Override                  @Override

Legend:
Removed from v.720  
changed lines
  Added in v.984

  ViewVC Help
Powered by ViewVC 1.1.20