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);
What is "shared preferences" in Android ?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
Open PDF in Google Drive with Intent in Android - RRutors
How do i load image from drawable folder in Jetpack Compose?
How to get an image resource by it's name in android?
What is ANR in android?
How to find Android Device UDID or unique ID?
How to Exit android app on back pressed?
What is Context?
How do I generate random numbers in Dart?
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
How to Get bitmap from drawable: Android
What is Intent? What is the difference between an implicit intent and an explicit intent?
What is ANR? How to avoid and resolve it?
What are the notifications available in android?
Fix Android Emulator Kill Error When Running Your App
Check List for Generate Signed APK Android
What is NetworkOnMainThread Exception?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
How to start a new activity on button click
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?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Explain Fragment Life Cycle
How can i comment inside xml file in android studio?
Extract Date and Time from Long Type Variable - RRutors
How to convert milli seconds to hours, minutes and seconds in Android?
What happens next when the device switches between portrait and landscape?
How to reduce APK package size?
Decompile APK Files: How to Get Source Code - RRutors Guide
How to Generate signed apk with android studio
How to validate email address in Android with Kotlin?
What are Android Versions available?
How To Set Text Color Programmatically Android TextView?
What is Application?
How to avoid multiple button click at same time in android?
How to get complete address from latitude and longitude?
How to get screen size (width,height) in Android?
Fix Duplicate Files in APK Build.gradle Issue - RRutors