android – TelephonyManager实例化
作者:互联网
我似乎无法在android中声明TelephonyManager,这正是我想要做的:
TelephonyManager tele = Context.getSystemService(Context.TELEPHONY_SERVICE);
我这样做了吗?
解决方法:
你忘了演员.它应该如下所示:
TelephonyManager tele = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
标签:telephonymanager,android,android-context 来源: https://codeday.me/bug/20190903/1795306.html