Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. package com.example.alscon.chance_o_matic.activity;
  2.  
  3. import android.content.Intent;
  4. import android.os.Bundle;
  5. import android.support.annotation.Nullable;
  6. import android.support.v7.app.AppCompatActivity;
  7.  
  8. /**
  9. * Created by Alscon on 15-Dec-16.
  10. */
  11.  
  12. public class SplashActivity extends AppCompatActivity {
  13. @Override
  14. protected void onCreate(@Nullable Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. Intent intent = new Intent(this, MainActivity.class);
  17. startActivity(intent);
  18. finish();
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement