Created
March 27, 2020 11:23
Android Studio - Tabbed Activity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//questa condizione è da inserire nella funzione onViewCreated() | |
/*se savedInstanceState non è nullo viene eseguito il ripristino | |
altrimenti viene eseguito il ripristino allo stato iniziale*/ | |
if (savedInstanceState != null) { | |
click = savedInstanceState.getInt("n1") | |
click2 = savedInstanceState.getInt("n2") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment