H hanyelmehy Active Member Licensed User Longtime User Oct 24, 2020 #1 how to do this in B4A B4X: Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("zoomus://")); if (intent.resolveActivity(getPackageManager()) != null) { startActivity(intent); }
how to do this in B4A B4X: Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("zoomus://")); if (intent.resolveActivity(getPackageManager()) != null) { startActivity(intent); }
mcqueccu Well-Known Member Licensed User Longtime User Oct 25, 2020 #2 B4X: 'Depends on Phone Library Dim pm As PackageManager StartActivity(pm.GetApplicationIntent("us.zoom.videomeetings")) Last edited: Oct 25, 2020 Upvote 0
B4X: 'Depends on Phone Library Dim pm As PackageManager StartActivity(pm.GetApplicationIntent("us.zoom.videomeetings"))
Erel B4X founder Staff member Licensed User Longtime User Oct 25, 2020 #3 Worth adding try / catch as it will throw an error if zoom is not installed. Upvote 0