/[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 482 by torben, Thu Oct 29 09:38:13 2009 UTC revision 984 by torben, Sun Jul 11 15:29:13 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
 import dk.thoerup.traininfo.util.MessageBox;  
3  import android.app.Activity;  import android.app.Activity;
4  import android.content.Intent;  import android.content.Intent;
5    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;
11  import android.widget.Button;  import android.widget.Button;
12    
13    import com.nullwire.trace.ExceptionHandler;
14    
15    import dk.thoerup.checkupdates.CheckUpdates;
16    
17  public class WelcomeScreen extends Activity{  public class WelcomeScreen extends Activity{
18          public enum ListType {          public enum ListType {
19                  ListNearest,                  ListNearest,
# Line 16  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 33  public class WelcomeScreen extends Activ Line 41  public class WelcomeScreen extends Activ
41                                    
42                  Button aboutButton = (Button) findViewById(R.id.about);                  Button aboutButton = (Button) findViewById(R.id.about);
43                  aboutButton.setOnClickListener( new AboutListener() );                  aboutButton.setOnClickListener( new AboutListener() );
44                    
45                    ExceptionHandler.register(this, "http://t-hoerup.dk/android/trace.php");
46                    
47                    CheckUpdates update = new CheckUpdates();
48                    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
64                  public void onClick(View v) {                  public void onClick(View v) {
65                            /*
66                            String appName = WelcomeScreen.this.getResources().getString(R.string.app_name);
67                            String ver = WelcomeScreen.this.getResources().getString(R.string.app_version);                
68                                                    
69                                                    StringBuffer message = new StringBuffer();
70                          MessageBox.showMessage(WelcomeScreen.this, "about");                          message.append(appName);
71                            message.append(" v").append(ver).append("\n");
72                            message.append("By Torben H. Nielsen\n");
73    
74                            MessageBox.showMessage(WelcomeScreen.this, message.toString());*/
75                            Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.t-hoerup.dk/android/traininfo/"));
76                            startActivity(browserIntent);
77                  }                  }
78                    
79          }          }
80            
81          class StationListListener implements OnClickListener{          class StationListListener implements OnClickListener{
82                  ListType launchType;                  ListType launchType;
83                  StationListListener(ListType type) {                  StationListListener(ListType type) {

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

  ViewVC Help
Powered by ViewVC 1.1.20