Back to project page Wallpaper.
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.
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); } }