简体   繁体   中英

Android: If a phone supports LTE or not?

Is there a way to programatically find out if a particular Android based phone(not-rooted) supports LTE or not? I could not find any related info in the docs.

Any info would be helpful. Thanks in advance.

It's not in the APIs so, officially the answer is no. I reverse engineered the first LTE phone and didn't find any thing I could use.

Use CellInfoLTE to check for something like a cellID or signal strength

if it returns null, then it doesn't support LTE.

Yes, There is a way!

Android Telephony manager helps you.

You would have to write a simple java code.

"tm.getNetworkType()" returns the network type.

For more info refer http://developer.android.com/reference/android/telephony/TelephonyManager.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM