I am working on an application wich has its own URI prefix. (dchub:// in this case)
Searching all over and read a lot but I got a bit confused.
Is it possible to start my application when someone clicks on a link starting with dchub:// in the browser?
So far found a lot of examples the otherway around opening the browser from your app but thats not what I'm looking for.
Update
Thanks a lot, i've figured that, now i'm a bit stuck in the next part.
Uri data = getIntent().getData();
if (data.equals(null)) { } else {
String scheme = data.getScheme();
String host = data.getHost();
int port = data.getPort();
}
i got some nullpointerexceptions if i start the app normally, it works fine if i open from the webpage. So i thought lets include some check for nullvalue but that didn't solve it. any suggestions how i can start the app just by selecting it?