0

It is possible to read the voice mail number by using this: http://developer.android.com/reference/android/telephony/TelephonyManager.html#getVoiceMailNumber()

But is it possible to set it yourself?

Thanks in advance!

Ikky
  • 2,826
  • 14
  • 47
  • 68

1 Answers1

0

Not without some extended hacking. It's definitely not something that Android wants you to be able to set. If I were dead set on trying, I would start by looking at com.android.internal.telephony.PhoneFactory.getDefaultPhone(); and com.android.internal.telephony.Phone.setVoiceMailNumber and trying to invoke them through reflection. It's not something that I recommend bothering trying to do really.

kabuko
  • 36,028
  • 10
  • 80
  • 93