Integrate Zello with your app
PTT functionality from your app
Add a PTT button from your Android application.
With the commands below you can:
- Push-to-talk from your application while Zello is in the background
When the button is pressed:
Intent intent = new Intent("com.zello.ptt.down");
intent.putExtra("com.zello.stayHidden", true);
activity.sendBroadcast(intent);
When the button is released:
Intent intent = new Intent("com.zello.ptt.up");
intent.putExtra("com.zello.stayHidden", true);
activity.sendBroadcast(intent);
These commands only work for the Zello Android application.
Channels
Add and open a Zello channel to your users's channel list from your Android or iOS application.
The Zello URL-scheme below will:
- Add [channelname] to a user's channel list and open channel talk screen
- If the user has [channelname] in his channel list, it will simply open that channel talk screen
URL: zello://[channelname]?add_channel
Contacts
Add and open a Zello contact to your users's channel list from your Android or iOS application.
The Zello URL-scheme below will:
- Add [username] to a user's contact list and open contact talk screen
- If the user has [username] in his contact list, it will simply open that contact talk screen
URL: zello://[username]?add_user
Questions? Submit a new ticket for support-related inquiries.
Which scheme do you refer to?
Will this also work with ZelloWork?