Back to project page dNote.
The source code is released under:
GNU General Public License
If you think the Android project dNote 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 com.digutsoft.note; /* w w w . jav a 2 s .c o m*/ import android.content.Intent; import android.os.Handler; import android.os.Message; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; public class DMSplash extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.splash); getSupportActionBar().hide(); Handler handler = new Handler() { public void handleMessage(Message msg) { Intent intSplash = new Intent(DMSplash.this, DMMain.class); startActivity(intSplash); finish(); } }; handler.sendEmptyMessageDelayed(0, 1500); } }