How to get All Sim Contacts in Android programmatically?

前端 未结 4 727
失恋的感觉
失恋的感觉 2021-01-20 19:28

How to list sim contacts in Android programmatically? I got the code to get phone contacts here but I need sim contacts too with this.

4条回答
  •  时光说笑
    2021-01-20 20:21

    Have you tried this

    TelephonyManager tMgr =(TelephonyManager)mAppContext.getSystemService(Context.TELEPHONY_SERVICE);
    mPhoneNumber = tMgr.getLine1Number();
    

    Also include READ_PHONE_STATE permission in manifest file.

提交回复
热议问题