Guest User

Untitled

a guest
Jul 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. /**
  2. * When a item list is clicked the news item will be shown on the device browser.
  3. *
  4. * @param url is Web Url of the news item.
  5. */
  6. private void openWebPage(String url) {
  7. Uri uriWebPage = Uri.parse(url);
  8. Intent intent = new Intent(Intent.ACTION_VIEW, uriWebPage);
  9. if (intent.resolveActivity(getPackageManager()) != null) {
  10. startActivity(intent);
  11. }
  12. }
Add Comment
Please, Sign In to add comment