-->

How to get the telephone number associated with th

2019-01-25 00:55发布

问题:

Possible Duplicate:
How to fetch own mobile number in android

How to get the telephone number associated with the SIM in a GSM phone?

回答1:

try following code

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

and with following permission in your xml

READ_PHONE_STATE