Android 中的 APN 设置
在我的 Android 应用程序中,我想检查 APN 设置集是否是首选 APN。
我可以有 Android 中的 APN 列表吗?
In my Android applications I would like to check if the APN settings set is the preferred APN.
Can I have a list of APN in android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以尝试这个 APN 列表,它来自 CyanogenMod 6。
http://github.com/CyanogenMod/android_vendor_cyanogen/blob/573afdd74db101ee6f20f3bd1c9976648414c834/prebuilt/common/etc/apns-conf.xml
You could try this list of APN's, it is from CyanogenMod 6.
http://github.com/CyanogenMod/android_vendor_cyanogen/blob/573afdd74db101ee6f20f3bd1c9976648414c834/prebuilt/common/etc/apns-conf.xml
关键是内容提供商 URI:“内容/电话/运营商”。
请查看此 APN 列表处理示例:
代码示例
Key thing is the content provider URI: "content/telephony/carriers".
Please check this example of APN list handling:
code example
首选接入点名称取决于网络提供商。您真的不想获得全世界所有电话公司的 APN 列表......?
The preferrede access point name depends on the network provider. You don't really want a list of APN's for all the phone companies in the whole world...?
您有两个数据库,其中保留了所有可以使用的 APN 的列表,第二个是首选 APN。
从其中一个构建您的列表,并从另一个获得首选 APN。
You have two databases, on keeps list of all the APN's that can be used, and second is preferred APN.
Construct your list from one, and get preferred APN from another.