Back to project page StreamHub-Android-Reviews-App.
The source code is released under:
MIT License
If you think the Android project StreamHub-Android-Reviews-App 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 livefyre.activities; // ww w.j av a 2 s .c om import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.os.Handler; import com.livefyre.R; public class LivefyreSplash extends Activity { private static int SPLASH_TIME_OUT = 2000; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.livefyre_splash); new Handler().postDelayed(new Runnable() { public void run() { Intent i = new Intent(LivefyreSplash.this, ReviewsActivity.class); startActivity(i); finish(); } }, SPLASH_TIME_OUT); } }