Back to project page RSSReader.
The source code is released under:
?????? ????? ?????? ?????? ?????????? ????????? 1.?????? ???????? ??????? ??????? ????? ?????? ????? ?????????...
If you think the Android project RSSReader 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.avaroid.rssreader; /* ww w . j a v a 2 s . c o m*/ import ca.laplanete.mobile.example.ExampleActivity; 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); hand = new Handler(); hand.postDelayed(new Runnable() { public void run() { Intent tunush = new Intent(); tunush.setClass(SplashActivity.this, ExampleActivity.class); SplashActivity.this.startActivity(tunush); SplashActivity.this.finish(); } }, 1000); } }