I am developing an application which has some pdf files in its assets folder. It shows error message if the user don't have pdf reader installed on his device. Catching the error, I'm doing this:

catch (ActivityNotFoundException e) {
    Toast.makeText(Documents.this, "NO Pdf Viewer available", Toast.LENGTH_SHORT).show();

    Intent i = new Intent(Intent.ACTION_VIEW);
    i.setData(Uri.parse("https://play.google.com/store/apps/details?id=com.adobe.reader&hl=en"));
    Documents.this.startActivity(i);
}

But this is giving just the webview of the app, from which the user can't download the Adobe Reader. My question is, how to get the URL of the Adobe reader from which the user can download the app? I want to redirect the user to Adobe reader app present in device's google play. Please help me out on this.