Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. fun startViewIntent(uri: Uri) {
  2. val intent = Intent(Intent.ACTION_VIEW)
  3. intent.data = uri
  4. try {
  5. startActivity(intent)
  6. } catch (e: ActivityNotFoundException) {
  7. e.printStackTrace()
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement