3

我似乎无法在 android 中声明 TelephonyManager,这就是我想要做的:

TelephonyManager tele = Context.getSystemService(Context.TELEPHONY_SERVICE);

我这样做对吗?

4

1 回答 1

5

你忘记投了。它应该如下所示:

TelephonyManager tele = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
于 2011-08-10T01:35:07.250 回答