How to check mobile network range in android via programatically

hi friends i want to check programmetically that device range if it is in range then want to show message to user that you are in range of mobile network thnks in advance

Upvotes: 1

Views: 1198

Answers (1)

Joachim Isaksson
Joachim Isaksson

Reputation: 180917

The API you'll need for doing that is android.telephony.SignalStrength which contains phone signal strength related information.

It's available from API level 7, that is Android 2.1.x or newer.

Upvotes: 1

Related Questions