Skip to content

Commit

Permalink
Move requestWindowFeature before onCreate
Browse files Browse the repository at this point in the history
  • Loading branch information
notandyvee committed Jul 5, 2024
1 parent 11e14c0 commit 74c9bd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public class AuthenticationActivity extends AppCompatActivity implements LoginSh

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
this.setTheme(R.style.Simperium);
setContentView(R.layout.activity_authentication);

Expand Down

0 comments on commit 74c9bd1

Please sign in to comment.