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);
How to reduce APK package size?
How to Use Deprecated Handler() in Android - RRutors Guide
What is the Different Between val and var in Kotlin?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How do i load image from drawable folder in Jetpack Compose?
Extract Date and Time from Long Type Variable - RRutors
How to avoid multiple button click at same time in android?
What is Android?
How to get complete address from latitude and longitude?
Key Points to remember while develop the Android Application.
What is Context?
Explain Fragment Life Cycle
How to get screen size (width,height) in Android?
How to Get bitmap from drawable: Android
Invoke-customs are only supported starting with android 0 --min-api 26
What happens next when the device switches between portrait and landscape?
How to get an image resource by it's name in android?
Android Studio project R can't find
Open PDF in Google Drive with Intent in Android - RRutors
FCM Not Receiving Notifications in Android - RRutors
Fix Android Emulator Kill Error When Running Your App
How can i comment inside xml file in android studio?
How to check Android version?
Decompile APK Files: How to Get Source Code - RRutors Guide
Hide/Disable soft keyboard on Activity launch: Android
Permission denied for window type 2010 in Marshmallow device
What is Android Fragments?
What is Application?
How to copy database from assets folder in android using kotlin
How do I check in SQLite whether a table exists?
What is the difference between match_parent and fill_parent?
ERR_ACCESS_DENIED in Android Webview with sdk 30
How to validate email address in Android with Kotlin?
What are Android Versions available?
What are the notifications available in android?
How to convert DP to Pixel and Pixel to Dp?
How To Set Text Color Programmatically Android TextView?
How to stop EditText focus at Activity startup in Android?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Check List for Generate Signed APK Android