How to get country code(calling code) in android?

前端 未结 3 786
情话喂你
情话喂你 2021-01-04 19:06

How can I get Country code of my sim in android code. I have used

TelephonyManager tm = (TelephonyManager)getSystemService(getApplicationContext().TELEPHONY         


        
3条回答
  •  清歌不尽
    2021-01-04 19:40

    Actually libphonenumber is more convenient and is maintained:

    PhoneNumberUtil.createInstance(getContext())getCountryCodeForRegion(countryNameCode)

    For Android instead of using the Google library this one seems to be more lightweight: https://github.com/MichaelRocks/libphonenumber-android

提交回复
热议问题