Molti esempi di pdf che trovi nel blog sono validi solo sulle vecchie versioni di Android.
Devi innanzitutto studiarti la Fileprovider che serve per condifidere file tra la tua app e app esternte (tipo un pdf reader).
La puoi trovare sul blog a questo indirizzo:
Edit: FileProvider is included as an internal library now. After investigating several issues with the current FileProvider code that you can find in the forum, I decided to make some improvements and implement it in a class. Starting from Android 7 (API 24) you cannot directly share file uris...
Poi per aprire il file col pdf reader puoi usare un codice come questo:
File.copy(TuaCartellaOrigine, NomePdfDaMostrare, Starter.Provider.SharedFolder, NomePdfDaMostrare)
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_VIEW, Starter.Provider.GetFileUri(NomePdfDaMostrare))
Intent1.SetType("application/pdf")
Intent1.Flags = 1
StartActivity(Intent1)