Commit 101287ff authored by Elena Berrios's avatar Elena Berrios
Browse files

Merge branch 'top-secret' of...

Merge branch 'top-secret' of https://agile.bu.edu/gitlab/ec327_projects/group7project into top-secret
parents e56e967d 5b786ecc
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@ import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;

public class NamePause extends AppCompatActivity {
@@ -15,6 +17,12 @@ public class NamePause extends AppCompatActivity {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_name_pause);

        Window window = getWindow();
        window.setFlags(
                WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN
        );

        resumeButton = findViewById(R.id.nameResumeButton);

        resumeButton.setOnClickListener(new View.OnClickListener() {
Loading