How to prevent “complete action using” while opening pdf file using Adobe Reader.
问题 I want to open pdf file using installed adobe reader. I tried in the following way to prevent "Complete action using" menu. Intent intent = new Intent(); intent.setPackage("com.adobe.reader"); intent.setDataAndType(Uri.fromFile(doc), "application/pdf"); startActivity(intent); Using the above code i managed to reduce the list size to 2. Is there any way to avoid showing context menu (Complete action using). Thank you! 回答1: Android system automatically displays "complete action using" dialog