Is there a way to open a pdf (stored on drive) to open in Google Drive PDF Viewer in Android. While I am using ACTION_VIEW, it shows open with options like drive and browser. Is there a way that by default it opens in Drive. It's okay even if it switches to drive by default.
My Code:
Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(pdf_link));
startActivity(myIntent);