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);
Android Studio project R can't find
How do i load image from drawable folder in Jetpack Compose?
What is the Different Between val and var in Kotlin?
How to Generate signed apk with android studio
How to install/ uninstall apk by command line ADB
'constructor Handler()' is deprecated. Deprecated in Java, How to use Handler() class in And
What is Android?
Google play store rejected my app due to SMS permission I removed SMS permission from the manifes
How can i comment inside xml file in android studio?
Duplicate files during packaging of APK” build.gradle issue: Android Studio
How to copy database from assets folder in android using kotlin
Key Points to remember while develop the Android Application.
How to validate email address in Android with Kotlin?
Invoke-customs are only supported starting with android 0 --min-api 26
How to Get bitmap from drawable: Android
How to Exit android app on back pressed?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
How to extract date and time from Long type variable in Kotlin on Android "
Permission denied for window type 2010 in Marshmallow device
Android FCM not receiving notifications when app is removed from background
What are symmetric and asymmetric encryption in the way Android interacts with the server?
How to convert DP to Pixel and Pixel to Dp?
Intent for Drive PDF Viewer - How to open PDF in Google Drive with intent
What is Android Fragments?
Is There A Way To Get The Source Code From An APK File? (or) How to decompile apk?
How to stop EditText focus at Activity startup in Android?
ERROR Android emulator gets killed when I try to run my application and choose an emulator it ret
How to find Android Device UDID or unique ID?
What are the notifications available in android?
What is ANR? How to avoid and resolve it?
How to get screen size (width,height) in Android?
How to avoid multiple button click at same time in android?
Hide/Disable soft keyboard on Activity launch: Android
How to add jar/library files as a dependency in Android studio gradle file
Explain Fragment Life Cycle
How to start a new activity on button click
How to convert milli seconds to hours, minutes and seconds in Android?
How to check Android version?
What is Application?
Check List for Generate Signed APK Android