Posts by Matheus Silas • 1 point
1 post
-
0
votes2
answers70
viewsA: How to open a new screen through a Button ? (The Button is inside a Popup)
The right thing would be: Intent intent = new Intent(getApplicationContext(), Sobre.class); startActivity(intent); Where you would pass within the relatives the context of the application, in case…