Android Question Launch Zoom App from your App

hanyelmehy

Active Member
Licensed User
Longtime User
how to do this in B4A
B4X:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("zoomus://"));
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
 
Top