如何获取从属插槽中 SIM 卡的运营商名称?

发布于 2024-12-25 03:26:55 字数 63 浏览 1 评论 0原文

对于双 SIM 设备如何获取位于从属插槽中的 NetworkOperatorName。我的主 SIM 卡已停用。

For dual SIM device how to getNetworkOperatorName which is in slave slot. And my master SIM is deactivated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天煞孤星 2025-01-01 03:26:55

我在 android API 上没有找到任何可以获取所有 SIM 运营商详细信息的内容。
只有我们可以获取当前网络运营商或 SIM 运营商的名称

TelephonyManager telephonyManager =((TelephonyManager) Context.getSystemService(Context.TELEPHONY_SERVICE));
String operatorName = telephonyManager.getNetworkOperatorName();

SIM 运营商可以通过以下方式检索:

String operatorName = telephonyManager.getSimOperatorName();

I didn't find anything on android API to get all SIM operators details.
Only we can get the name of the Current Network Operator or SIM operator

TelephonyManager telephonyManager =((TelephonyManager) Context.getSystemService(Context.TELEPHONY_SERVICE));
String operatorName = telephonyManager.getNetworkOperatorName();

SIM operator can be retrieved by using:

String operatorName = telephonyManager.getSimOperatorName();
尐籹人 2025-01-01 03:26:55

您需要使用 SubscriptionManagergetActiveSubscriptionInfoList() https://developer.android.com/reference/android/telephony/SubscriptionManager.html#getActiveSubscriptionInfoList()

但是,请记住,它是仅在 API 级别 22 中添加

You need to use SubscriptionManager's getActiveSubscriptionInfoList() https://developer.android.com/reference/android/telephony/SubscriptionManager.html#getActiveSubscriptionInfoList()

However, keep in mind that it was only added in API Level 22

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文