Back to project page vlcamera.
The source code is released under:
Apache License
If you think the Android project vlcamera 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.ktmt.vlcamera.activities; // www . j a v a 2s. co m import com.ktmt.vlcamera.R; import com.ktmt.vlcamera.custom.BaseActivity; import android.os.Bundle; import android.os.Handler; import android.content.Intent; public class SplashActivity extends BaseActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_splash); new Handler().postDelayed(new Runnable() { @Override public void run() { startActivity(new Intent(SplashActivity.this, MenuActivity.class)); finish(); } }, 1500); } }