setAudioRoute method

  1. @override
void setAudioRoute(
  1. TUIAudioRoute route
)
override

Setting the audio route (for mobile OS)

A mobile phone has two audio playback devices: the receiver at the top and the speaker at the bottom. If the audio route is set to the receiver, the volume is relatively low, and audio can be heard only when the phone is put near the ear. This mode has a high level of privacy and is suitable for answering calls. If the audio route is set to the speaker, the volume is relatively high, and there is no need to put the phone near the ear. This mode enables the "hands-free" feature.

Implementation

@override
void setAudioRoute(TUIAudioRoute route) {
  RoomEngineNative.setAudioRoute(route);
}