如何获取从属插槽中 SIM 卡的运营商名称?
对于双 SIM 设备如何获取位于从属插槽中的 NetworkOperatorName。我的主 SIM 卡已停用。
For dual SIM device how to getNetworkOperatorName which is in slave slot. And my master SIM is deactivated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 android API 上没有找到任何可以获取所有 SIM 运营商详细信息的内容。
只有我们可以获取当前网络运营商或 SIM 运营商的名称
SIM 运营商可以通过以下方式检索:
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
SIM operator can be retrieved by using:
您需要使用
SubscriptionManager
的getActiveSubscriptionInfoList()
https://developer.android.com/reference/android/telephony/SubscriptionManager.html#getActiveSubscriptionInfoList()但是,请记住,它是仅在 API 级别 22 中添加
You need to use
SubscriptionManager
'sgetActiveSubscriptionInfoList()
https://developer.android.com/reference/android/telephony/SubscriptionManager.html#getActiveSubscriptionInfoList()However, keep in mind that it was only added in API Level 22