Skip to content

Commit

Permalink
feat(design): launch main activity
Browse files Browse the repository at this point in the history
Signed-off-by: Rafa Hernandez <[email protected]>
  • Loading branch information
rafaelje authored and ajsb85 committed Mar 26, 2018
1 parent 38c21f9 commit 63cb23a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class SplashActivity extends Activity {

/**
* Called when the activity is starting, inflates the activity's UI
* @param Bundle savedInstanceState if the activity is re-initialized, it contains the data it most recently supplied
* @param savedInstanceState if the activity is re-initialized, it contains the data it most recently supplied
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
Expand Down Expand Up @@ -78,7 +78,7 @@ public void run() {
* Starts the activity
*/
private void openActivity() {
Intent miIntent = new Intent(SplashActivity.this, FragmentAccueil.class);
Intent miIntent = new Intent(SplashActivity.this, MainActivity.class);
SplashActivity.this.startActivity(miIntent);
SplashActivity.this.finish();
}
Expand Down

0 comments on commit 63cb23a

Please sign in to comment.