Android Open Source - Wallpaper Splash Activity






From Project

Back to project page Wallpaper.

License

The source code is released under:

?????? ????? ?????? ?????? ?????????? ????????? 1.?????? ???????? ??????? ??????? ????? ?????? ????? ?????????...

If you think the Android project Wallpaper 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 net.uyghurdev.app.wallpaper;
/*from ww  w  . java  2  s .c om*/
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.widget.ImageView;

public class SplashActivity extends Activity{

  ImageView imgsplash;
  Handler hand;
  
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash);
    
    imgsplash = (ImageView)findViewById(R.id.splash);
//    imgsplash.setImageResource(R.drawable.splash);
    hand=new Handler();
        hand.postDelayed( new Runnable() {
          public void run() {
            Intent tunush = new Intent();
        tunush.setClass(SplashActivity.this, Wallpaper.class);
        SplashActivity.this.startActivity(tunush);
        SplashActivity.this.finish();
          }
          },1000);

    
    
  }
  
  
  

}




Java Source Code List

net.uyghurdev.app.wallpaper.About.java
net.uyghurdev.app.wallpaper.DownloadFile.java
net.uyghurdev.app.wallpaper.ImageAdapter.java
net.uyghurdev.app.wallpaper.MyParser.java
net.uyghurdev.app.wallpaper.MyXMLHandler.java
net.uyghurdev.app.wallpaper.SitesList.java
net.uyghurdev.app.wallpaper.SplashActivity.java
net.uyghurdev.app.wallpaper.Wallpaper.java