Android Open Source - CulcuCalculator Splash






From Project

Back to project page CulcuCalculator.

License

The source code is released under:

GNU General Public License

If you think the Android project CulcuCalculator listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.sowg.calc;
// w ww  . j  ava 2s .  c  o  m
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

/**
 * Created by sam on 6/11/13
 * Splash Screen show up when the application is starting
 */
public class Splash extends Activity {

    @Override
    protected void onCreate(Bundle Calcu){
        super.onCreate(Calcu);
        setContentView(R.layout.splash);
        Thread timer = new Thread(){
            public void run(){
                try{
                    sleep(5000);// makes the application to sleep for 5 Seconds

                }catch (InterruptedException e){
                    e.printStackTrace();
            } finally{
                    Intent openCalcu = new Intent("com.sowg.calc.SOWGCALC");
                    startActivity(openCalcu);
            }
            }
        };
        timer.start();

    }
}




Java Source Code List

com.sowg.calc.CalcGrammar.java
com.sowg.calc.CalcLexer.java
com.sowg.calc.CalcParser.java
com.sowg.calc.Constants.java
com.sowg.calc.Helper.java
com.sowg.calc.Memory.java
com.sowg.calc.SOWGButton.java
com.sowg.calc.SOWGEditText.java
com.sowg.calc.SOWGNumberKeyListener.java
com.sowg.calc.SOWGcalc.java
com.sowg.calc.Splash.java