I have an app that use its own file format.
I want that when the user click on a file with extension .myAppFormat
from any file manager
I have already read this question to understand how to register a new file format.
My problem: How to get the full file path on opening to allow my method to load the file?
My method is something like:
public void loadFile(String path){
FileInputStream savedSerializable = new FileInputStream(path);
...
}