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 avoid multiple button click at same time in android?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to get an image resource by it's name in android?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
What is Application?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How to Exit android app on back pressed?
How do i load image from drawable folder in Jetpack Compose?
How to reduce APK package size?
How to stop EditText focus at Activity startup in Android?
Explain Fragment Life Cycle
How to install/ uninstall apk by command line ADB
What are the notifications available in android?
How to Get bitmap from drawable: Android
What is the Different Between val and var in Kotlin?
How to convert DP to Pixel and Pixel to Dp?
What is ANR? How to avoid and resolve it?
Decompile APK Files: How to Get Source Code - RRutors Guide
How to get a contact image using a phone number in android?
How do I generate random numbers in Dart?
Fix Play Store Rejection Due to SMS Permission - RRutors
Fix Android Emulator Kill Error When Running Your App
How to save activity State in Android?
Add Jar/Library Files as Dependency in Android Studio
What is ANR in android?
Extract Date and Time from Long Type Variable - RRutors
How to find Android Device UDID or unique ID?
Open PDF in Google Drive with Intent in Android - RRutors
Hide/Disable soft keyboard on Activity launch: Android
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What is "shared preferences" in Android ?
How do I check in SQLite whether a table exists?
Key Points to remember while develop the Android Application.
How To Set Text Color Programmatically Android TextView?
How to get complete address from latitude and longitude?
What is Android?
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
How to get screen size (width,height) in Android?
How to Generate signed apk with android studio
Symmetric vs Asymmetric Encryption in Android Server - RRutors