I want to know Both sim card\'s operator name when mobile is dual sim.In single SIM I got operator name programmatically But For duel SIM I can\'t although after so many sea
Solution is too curious and It is only work in motoe2.not in others.In some it display null or in some only display one sim operator.
Just change this two line:
telephonyInfo.optName1 = telephonyInfo.getOutput(
getApplicationContext(), "SimOperatorName", 1);
telephonyInfo.optName2 = telephonyInfo.getOutput(
getApplicationContext(), "SimOperatorName", 2);
getOutput() method is as per answer of Sujith.