Answer the question
In order to leave comments, you need to log in
How to open an intent:// link?
Hello, how can I open a link like this:
intent://qr.nspk.ru/....?type=02&bank=100000000054&sum=9863&cur=RUB&crc=23A2#Intent;scheme=bank100000000004;end
String url = "intent://qr.nspk.ru/....?type=02&bank=100000000054&sum=9863&cur=RUB&crc=23A2#Intent;scheme=bank100000000004;end";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
Answer the question
In order to leave comments, you need to log in
This is called deeplink.
https://www.raywenderlich.com/18330247-deep-links-... - more details here
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question