Hey can any one answer for Dual sim device how to getNetworkOperatorName which is in slave slot.And my master sim is deactivated.Its urgent please help as soon as possible.

link|improve this question

0% accept rate
feedback

1 Answer

I didnt find anything on android api to get all simoperators detaikls. Only we can get the name of the Current Network Operator or sim operator

TelephonyManager telephonyManager =((TelephonyManager) Context.getSystemService(Context.TELEPHONY_SERVICE));
String operatorName = telephonyManager.getNetworkOperatorName();

sim operator can be retrieved by using:

String operatorName = telephonyManager.getSimOperatorName();
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.