-2

I would like to know is there a way to retrieve a mobile phone number from inside a custom Android application?


There is a class TelephonyManager but I could not see a method that reads GSM number from phone or SIM card. I have to add that it is not for any illegal purpose, customer wolud like to memorize GSM number of a client so he can get in touch with them.

4

1 回答 1

0
TelephonyManager tMgr = (TelephonyManager)mAppContext.getSystemService(Context.TELEPHONY_SERVICE);
mPhoneNumber = tMgr.getLine1Number();

还需要 READ_PHONE_STATE 权限才能在您的清单中。

于 2013-09-23T20:41:36.603 回答