1

I have a very minimal knowledge about VoLTE service in android which is provided by the LTE operator.

Is there any API's are available to detect VoLTE call in android?

The API's such as

  • Call Connected
  • Call Disconnected
  • Latency
  • Call Status

Any link/API reference is much appreciated.

Madhukar Hebbar
  • 3,113
  • 5
  • 41
  • 69

2 Answers2

2

TelephonyManager.java have a function to check isVolteAvailable(). You can call that function to know the status of voLTE.

You can check the source here.. https://github.com/android/platform_frameworks_base/blob/master/telephony/java/android/telephony/TelephonyManager.java

Sriraman
  • 7,658
  • 4
  • 40
  • 60
0

If you can connect to at port then by using standard at commands, this can be verified.

  1. at+cops? => this will give information about the current latched cell. check if the mobile is currently on LTE(7) cell.
  2. make volte call and shoot the at+cops? again. If the call is connected and mobile is still in LTE(7) cell, then its for sure VoLTE call.