Android Open Source - TheNewBoston Splash






From Project

Back to project page TheNewBoston.

License

The source code is released under:

Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...

If you think the Android project TheNewBoston 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.homelysoft.thenewboston;
/*w  w w  .j  a v  a 2  s .  co m*/
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.preference.PreferenceManager;

public class Splash extends Activity {

  MediaPlayer splashSound;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash);

    final Intent openStaringPoint = new Intent(
        "com.homelysoft.thenewboston.HOME");
    Thread timer = new Thread() {
      @Override
      public void run() {
        super.run();
        try {
          sleep(4000);
        } catch (InterruptedException e) {
          e.printStackTrace();
        } finally {
          startActivity(openStaringPoint);
        }
      }

    };
    
    SharedPreferences getPreferences = PreferenceManager
        .getDefaultSharedPreferences(getBaseContext());
    String splash_selection = getPreferences.getString("splash", "1");
    if (splash_selection.contentEquals("1")) {

      timer.start();
      splashSound = MediaPlayer.create(Splash.this,
          R.raw.splash_sound_shortened);
      splashSound.start();

    } else if (splash_selection.contentEquals("2")) {

      timer.start();

    }
    else if (splash_selection.contentEquals("3")) {
      startActivity(openStaringPoint);
    }
  }

  @Override
  protected void onPause() {
    super.onPause();
    if (splashSound != null)
      splashSound.release();
    finish();
  }

}




Java Source Code List

com.homelysoft.thenewboston.AboutUs.java
com.homelysoft.thenewboston.Accelerate.java
com.homelysoft.thenewboston.Data.java
com.homelysoft.thenewboston.Email.java
com.homelysoft.thenewboston.ExternalData.java
com.homelysoft.thenewboston.Flipper.java
com.homelysoft.thenewboston.Home.java
com.homelysoft.thenewboston.HotOrNot.java
com.homelysoft.thenewboston.InternalData.java
com.homelysoft.thenewboston.OpenedClass.java
com.homelysoft.thenewboston.OurViewClient.java
com.homelysoft.thenewboston.Photo.java
com.homelysoft.thenewboston.Preferences.java
com.homelysoft.thenewboston.SQLView.java
com.homelysoft.thenewboston.SQLite.java
com.homelysoft.thenewboston.SharedPrefs.java
com.homelysoft.thenewboston.Slider.java
com.homelysoft.thenewboston.SoundPoolPlay.java
com.homelysoft.thenewboston.Splash.java
com.homelysoft.thenewboston.StartingPoint.java
com.homelysoft.thenewboston.Tabs.java
com.homelysoft.thenewboston.TextPlay.java
com.homelysoft.thenewboston.gfx.GFXSurface.java
com.homelysoft.thenewboston.gfx.GFX.java
com.homelysoft.thenewboston.gfx.MyBringBack.java
com.homelysoft.thenewboston.vect.Vector.java