TUICallKit
and provides two schemes for customization: slight UI adjustment and custom UI implementation.TUICallKit
by directly modifying the UI source code in the Android/tuicallkit-kt
folder in tencentyun/TUICallKit.tuicallkit-kt/src/main/res/drawable-xxhdpi
folder to customize the color tone and style of all the icons in your application. When you replace an icon, make sure the filename is the same as the original icon.tuicallkit-kt/src/main/res/raw
folder.Filename | Description |
phone_dialing.mp3 | The sound of making a call |
phone_hangup.mp3 | The sound of being hung up |
phone_ringing.mp3 | The ringtone for incoming calls |
strings.xml
file in tuicallkit-kt/src/main/res/values-**/
.TUICallKit
is implemented based on the UI-less component TUICallEngine
. You can delete the tuicallkit
folder and implement your own UIs based entirely on TUICallEngine
.TUICallEngine
is the underlying API of the entire TUICallKit
component. It provides key APIs such as APIs for making, answering, declining, and hanging up one-to-one audio/video and group calls and device operations.API | Description |
Creates a TUICallEngine instance (singleton). | |
Terminates a TUICallEngine instance (singleton). | |
Completes the authentication of basic audio/video call capabilities. | |
Registers an event listener. | |
Unregisters an event listener. | |
Makes a one-to-one call. | |
Makes a group call. | |
Answers a call. | |
Declines a call. | |
Hangs up a call. | |
Ignores a call. | |
Invites a user during a group call. | |
Joins the current group call actively. | |
Switches the call media type, such as from video call to audio call. | |
Subscribes to the video stream of a remote user. | |
Unsubscribes from the video stream of a remote user. | |
Enables the camera. | |
Disables the camera. | |
Switches between the front and rear cameras. | |
Enables the mic. | |
Disables the mic. | |
Selects the audio playback device (receiver/speaker on the device). | |
Sets the user nickname and profile photo. | |
Enables/Disables the multi-device login mode of TUICallEngine (supported by the premium plan). | |
Set the rendering mode of video image. | |
Set the encoding parameters of video encoder. | |
Advanced features. | |
Set beauty level, support turning off default beauty. |
TUICallObserver
is the callback even class of TUICallEngine
. You can use it to listen on the desired callback events.API | Description |
An error occurred during the call. | |
A call was received. | |
The call was canceled. | |
The call was connected. | |
The call ended. | |
The call media type changed. | |
A user declined the call. | |
A user didn't respond. | |
A user was busy. | |
A user joined the call. | |
A user left the call. | |
Whether a user had a video stream. | |
Whether a user had an audio stream. | |
The volume levels of all users. | |
The network quality of all users. |
API | Description |
The call media type. Enumeration: Video call and audio call. | |
The call role. Enumeration: Caller and callee. | |
The call status. Enumeration: Idle, waiting, and answering. | |
The audio/video room ID, which can be a number or string. | |
The camera type. Enumeration: Front camera and rear camera. | |
The audio playback device type. Enumeration: Speaker and receiver. | |
The information of the current network quality. |
Was this page helpful?