In android/Hybrid app, I am using following code to check "Is viewer to open file is installed on device or not"
private boolean detectFileViewer(String fileExt) throws InterruptedException,
JSONException {
try {
PackageManager packageManager = cordova.getActivity().getPackageManager();
Intent testIntent = new Intent(Intent.ACTION_VIEW);
testIntent.setType( MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileExt));
if (packageManager.queryIntentActivities(testIntent, PackageManager.MATCH_DEFAULT_ONLY).size() > 0) {
return true;
} else {
return false;
}
} catch (Exception e) {
return false;
}
}
On Android Lollipop, if only default PDF viewer i.e. "Drive PDF Viewer" is present above code is returning false as
PackageManager.MATCH_DEFAULT_ONLY
is returning empty array. Also above code is working fine on previous versions of Android.
Tested on nexus 4 and nexus 5 with Android Lollipop.
do you wanna like that ? or just check it?