I tried googling in google but unable to find the answer

Will anyone please let me know, how can i retrieve the current phone number from the android code. I think phone number will be stored in the sim card.

Thanks & Regards, SSuman185

link|improve this question

55% accept rate
this is the link may be useful to u mobile.tutsplus.com/tutorials/android/… – parag Feb 8 '11 at 7:07
feedback

2 Answers

You can try:

TelephonyManager phoneManager = (TelephonyManager) 
    getApplicationContext().getSystemService(Context.TELEPHONY_SERVICE);
String phoneNumber = phoneManager.getLine1Number();

Needs READ_PHONE_STATE permission.

link|improve this answer
Thanks its working – SSuman185 Feb 8 '11 at 11:02
You are welcome, but pls. mark accept the answer if it helped you. – Sebastian Roth Feb 9 '11 at 2:57
Hi Sebastian, I am sorry actually it was returning some number i thought it will be the phone number and when i printed i came to know that it is only 2 digit, but actually phone number is 10 digit right. Please help me if u know how to get the 10 digit phone number – SSuman185 Feb 10 '11 at 6:07
Doesn't work for me either (Android 2.1 and 2.2 with provider Telstra). In my case it always returns empty. Also Android itself in "About Phone" has number as empty. – Carsten May 11 '11 at 3:20
feedback

If the TelephonyManager didn't work you can get this info through AccountManager. One of the accounts will be the number, the others are the mails.

See source details implementation on this post: Get phone number problem

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.