We can open PDF in google drive by below code Uri pdfUri = Uri.parse("pass you file path");
Intent shareIntent = ShareCompat.IntentBuilder.from(this)
.setText("Share PDF doc")
.setType("application/pdf")
.setStream(pdfUri )
.getIntent()
.setPackage("com.google.android.apps.docs");
startActivity(shareIntent);
ERR_ACCESS_DENIED in Android Webview with sdk 30
What happens next when the device switches between portrait and landscape?
FCM Not Receiving Notifications in Android - RRutors
Explain Fragment Life Cycle
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How to find Android Device UDID or unique ID?
Hide/Disable soft keyboard on Activity launch: Android
How to Get bitmap from drawable: Android
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
How to avoid multiple button click at same time in android?
What is NetworkOnMainThread Exception?
Add Jar/Library Files as Dependency in Android Studio
How to get an image resource by it's name in android?
How to Generate signed apk with android studio
How To Set Text Color Programmatically Android TextView?
Fix Play Store Rejection Due to SMS Permission - RRutors
How to get complete address from latitude and longitude?
How to reduce APK package size?
How to Use Deprecated Handler() in Android - RRutors Guide
How can i comment inside xml file in android studio?
Android Studio project R can't find
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Extract Date and Time from Long Type Variable - RRutors
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
What is Application?
What is ANR? How to avoid and resolve it?
What are Android Versions available?
Permission denied for window type 2010 in Marshmallow device
Open PDF in Google Drive with Intent in Android - RRutors
How to get a contact image using a phone number in android?
What is "shared preferences" in Android ?
How to install/ uninstall apk by command line ADB
What is the difference between match_parent and fill_parent?
How do i load image from drawable folder in Jetpack Compose?
What is the Different Between val and var in Kotlin?
Decompile APK Files: How to Get Source Code - RRutors Guide
What is Context?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
How to copy database from assets folder in android using kotlin
How to convert milli seconds to hours, minutes and seconds in Android?