Guest User

Untitled

a guest
Jan 17th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. //Intent Explicit
  2. Intent intent = new Intent(MainActivity.this, SecondActivity.class);
  3.  
  4. //Intent Implicit
  5. Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + phone_number));
Add Comment
Please, Sign In to add comment