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.
Have you tried this
TelephonyManager tMgr =(TelephonyManager)mAppContext.getSystemService(Context.TELEPHONY_SERVICE); mPhoneNumber = tMgr.getLine1Number();
Also include READ_PHONE_STATE permission in manifest file.