get both simcard operator name in dual SIM mobile

前端 未结 5 1711
不思量自难忘°
不思量自难忘° 2021-01-06 09:10

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

5条回答
  •  滥情空心
    2021-01-06 09:52

    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.

提交回复
热议问题