I can't seem to be able to declare a TelephonyManager in android, this is what I'm trying to do:

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

Am I doing this right?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Your forgetting to cast. It should look like this:

TelephonyManager tele = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.