我想使用 android 获取 SIM 电话号码,但是当我得到号码时,长度为零!这是代码:
TelephonyManager mTelephonyMgr = (TelephonyManager) getSystemService(getApplicationContext().TELEPHONY_SERVICE);
String s=mTelephonyMgr.getLine1Number();
Toast.makeText(getBaseContext(), "The length is "+s.length(), Toast.LENGTH_LONG).show();
但它会吐司“长度为零”。当我打印数字时,它不会打印任何内容。谁能给我一个解决方案?