Back to project page aBusTripMK.
The source code is released under:
GNU General Public License
If you think the Android project aBusTripMK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Created by Drakuwa /**// www. ja v a 2 s. c o m * * @author Bojan Ilievski - Drakuwa * */ package com.app.busmk; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.os.Handler; public class splash extends Activity { protected boolean _active = true; protected int _splashTime = 3000; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.splash); new Handler().postDelayed(new Runnable(){ public void run() { Intent novIntent = new Intent(splash.this,main.class); startActivity(novIntent); finish(); }},3000); } }