本文介绍了如何获得在Android的code手机的电话号码吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试着在谷歌上搜索谷歌,但找不到答案

I tried googling in google but unable to find the answer

请问有人请让我知道,我怎么可以检索从Android code当前的电话号码。我认为电话号码将被存储在SIM卡

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.

感谢和放大器;问候,SSuman185

Thanks & Regards,SSuman185

推荐答案

您可以试试:

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

需求 READ_PHONE_STATE 许可。

这篇关于如何获得在Android的code手机的电话号码吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 04:47