Hi,
I can start a phone call on android with the code below, but I've also seen different advice ("callto://+49800xxxxxxx") that doesn't work for me.
Qt Code:
  1. QDesktopServices::openUrl(QUrl("tel:+49800xxxxxxx", QUrl::TolerantMode));
To copy to clipboard, switch view to plain text mode 


I can also start an email with
Qt Code:
  1. QDesktopServices::openUrl(QUrl("mailto:"+myAddress+"?subject="+mySubject+"&body="+myText, QUrl::TolerantMode));
To copy to clipboard, switch view to plain text mode 

Do you know more possible use cases?

I've failed to find a comprehensive list of possibilities for this, neither here, nor on Google, nor in the docs. Any suggestion where to read further would be gratefully appreciated!