Filechooser selecting a word file downloaded from GMail crashes app
问题 I am using a file chooser to pick a WORD file downloaded from GMail, it causes the app crashed.Here's my code segment: == file chooser code == Intent intent = new Intent(); intent.setAction(Intent.ACTION_OPEN_DOCUMENT); intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true); intent.addCategory(Intent.CATEGORY_OPENABLE); //sets the select file to all types of files String [] mimeTypes = {"application/pdf", "application/msword", "application/vnd.openxmlformats officedocument.wordprocessingml.document"}