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 Set Text Color Programmatically Android TextView?
How to validate email address in Android with Kotlin?
Fix Android Emulator Kill Error When Running Your App
How to check Android version?
What is Application?
How to reduce APK package size?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
What is the difference between match_parent and fill_parent?
How to get a contact image using a phone number in android?
What is ANR? How to avoid and resolve it?
How to get screen size (width,height) in Android?
How to get complete address from latitude and longitude?
How to install/ uninstall apk by command line ADB
How to avoid multiple button click at same time in android?
Set Activity to Fullscreen Mode in Android - RRutors
Symmetric vs Asymmetric Encryption in Android Server - RRutors
Check List for Generate Signed APK Android
How to start a new activity on button click
What is Context?
What is Android Fragments?
What happens next when the device switches between portrait and landscape?
How to stop EditText focus at Activity startup in Android?
FCM Not Receiving Notifications in Android - RRutors
What is Intent? What is the difference between an implicit intent and an explicit intent?
What is NetworkOnMainThread Exception?
How to find Android Device UDID or unique ID?
What is "shared preferences" in Android ?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
How to convert milli seconds to hours, minutes and seconds in Android?
Android Studio project R can't find
How to convert DP to Pixel and Pixel to Dp?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
How to Get bitmap from drawable: Android
Hide/Disable soft keyboard on Activity launch: Android
What are the notifications available in android?
Open PDF in Google Drive with Intent in Android - RRutors
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
How to Use Deprecated Handler() in Android - RRutors Guide
Key Points to remember while develop the Android Application.
How do I check in SQLite whether a table exists?