我正在我的应用程序中工作并使用以下方法获取电话号码:
TelephonyManager phoneManager = (TelephonyManager)appContext.getSystemService(Context.TELEPHONY_SERVICE);
number = phoneManager.getLine1Number();
它适用于所有 SIM 卡,但在 Airtel 提供商的 SIM 卡中出现问题。我在尝试使用这张 SIM 卡时变得空白。
我不知道为什么 Android API 与不同的提供者打交道不同。请给我建议。