Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过编程方式从 android 设备中知道电话号码、注册名称等 sim 信息。我经历了这个但没有取得任何成功。任何人都可以请提供一些帮助...提前谢谢!
您可以试用此 API,但它不适用于所有设备:
TelephonyManager telephonyMgr = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); simNum = telephonyMgr.getLine1Number();
除此之外,您可以阅读 MCC\MNC、网络运营商和 IMEI,这可以帮助您识别设备\用户。