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.
我想构建一个基于 Web 的 android 应用程序。我想要的是我希望我的应用程序知道用户电话号码,但我不希望他们输入它;也许,我希望我的应用程序通过访问他们的 SIM 卡或任何方式自动知道他们的号码。你能帮我吗?
谢谢你。
清单许可:
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
代码:
TelephonyManager manager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); String telNumber = manager.getLine1Number();
这并不意味着它适用于所有设备。有时号码不可用。