Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Make start screen visible when starting edit activity
Browse files Browse the repository at this point in the history
Signed-off-by: micrusa <[email protected]>
  • Loading branch information
micrusa committed Apr 22, 2020
1 parent 242ac3c commit 5382f49
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ private void init() {
//Layouts
L1 = this.findViewById(R.id.startScreen);
L2 = this.findViewById(R.id.timerScreen);
//Make just start screen visible
L1.setVisibility(View.VISIBLE);
L2.setVisibility(View.GONE);
}

private void startActivity() {
Expand Down

0 comments on commit 5382f49

Please sign in to comment.