Android: Open file with intent chooser from URI obtained by Storage Access Framework
In the beginning the user can select files with the new Storage Access Framework (Assuming the app is API>19): https://developer.android.com/guide/topics/providers/document-provider.html Then I save references to those chosen files by saving the URI`s which looks like: content://com.android.providers.downloads.documments/document/745 (in this case the file is from the default downloads dir`). Later, I want let the user to open those files (For example they names displayed in UI list, and the user selects one). I want to do this with the Android famous intent chooser feature, and all I have is