Guest User

Untitled

a guest
Jul 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. R.id.buildingOneButt:
  2. //Building One button pressed on buildmenu.xml
  3. String urlOne = "uri"
  4. Intent buildingOne = new Intent(Intent.ACTION_VIEW);
  5. buildingOne.setData(Uri.parse(urlOne));
  6. GoHome();
  7. startActivity(buildingOne);
  8.  
  9. public void GoHome()
  10. {
  11. Intent intent= new Intent(this, NFCwmcActivity.class);
  12. intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  13. startActivity(intent);
  14. }
Add Comment
Please, Sign In to add comment