Advertisement
Guest User

Untitled

a guest
Jan 25th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.25 KB | None | 0 0
  1. /* file FirstActivity.java */
  2. private void changeActivity() {
  3.     // membuat instance object intent
  4.     Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
  5.    
  6.     // memulai SecondActivity dengan intent
  7.     startActivity(intent);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement