How can I find out carrier's name in Android?
+5
A:
Never used it myself, but take a look at TelephonyManager->getNetworkOperatorName().
You could try something as simple as this:
String carrierName = ((TelephonyManager)Context.getSystemService(Context.TELEPHONY_SERVICE)).getNetworkOperatorName();
pableu
2010-10-01 12:05:21
Thanks, it works.
fhucho
2010-10-01 12:06:33
+2
A:
TelephonyManager telephonyManager = ((TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE));
String operatorName = telephonyManager.getNetworkOperatorName();
fhucho
2010-10-01 12:05:44