Carl Manaster
Carl Manaster

Reputation: 40356

How to determine the voicemail phone number in Android

How can I determine the phone's voicemail number in Android code?

Upvotes: 4

Views: 2408

Answers (2)

nickfox
nickfox

Reputation: 2835

You can use getVoiceMailNumber() in the TelephonyManager class, please note that this may not work with all cell phone providers:

Android TelephonyManager

Upvotes: 4

CommonsWare
CommonsWare

Reputation: 1007544

Call getVoiceMailNumber() on the TelephonyManager.

Upvotes: 3

Related Questions