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 ?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
Fix Android Emulator Kill Error When Running Your App
Fix Play Store Rejection Due to SMS Permission - RRutors
Check List for Generate Signed APK Android
How to check Android version?
How to get complete address from latitude and longitude?
How to avoid multiple button click at same time in android?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
How to convert DP to Pixel and Pixel to Dp?
How to get a contact image using a phone number in android?
Android Studio project R can't find
Decompile APK Files: How to Get Source Code - RRutors Guide
How to Generate signed apk with android studio
How to Exit android app on back pressed?
Extract Date and Time from Long Type Variable - RRutors
How to convert milli seconds to hours, minutes and seconds in Android?
What is ANR? How to avoid and resolve it?
What happens next when the device switches between portrait and landscape?
How to reduce APK package size?
How can i comment inside xml file in android studio?
How to find Android Device UDID or unique ID?
What is Android?
How to get screen size (width,height) in Android?
How to stop EditText focus at Activity startup in Android?
What is the Different Between val and var in Kotlin?
What is Context?
How to Get bitmap from drawable: Android
Explain Fragment Life Cycle
What is Application?
What is ANR in android?
What is the difference between match_parent and fill_parent?
How do I check in SQLite whether a table exists?
How do I generate random numbers in Dart?
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
How to copy database from assets folder in android using kotlin
Permission denied for window type 2010 in Marshmallow device
How to save activity State in Android?
Open PDF in Google Drive with Intent in Android - RRutors
What is Intent? What is the difference between an implicit intent and an explicit intent?