How to find out which SIM is making the outgoing call (Dual SIM)

前端 未结 5 1264
[愿得一人]
[愿得一人] 2020-12-31 19:47

I would like to check which SIM is making an outgoing call for DUAL SIM android phones. Read this article Android : Check whether the phone is dual SIM.

Works like a

5条回答
  •  时光说笑
    2020-12-31 20:34

    intent.putExtra("simSlot", 0); //For sim 1
    
    intent.putExtra("simSlot", 1); //For sim 2
    

    Refer this link

    Call from second sim

提交回复
热议问题