Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of ProgrammerX

ProgrammerX

ProgrammerX has asked 1 questions and find answers to 0 problems.

Stats

5
EtPoint
0
Vote count
1
questions
0
answers

About

PROGRAMMER X

private String getCountryISO(){
    String iso = null;

    TelephonyManager telephonyManager = (TelephonyManager) getApplicationContext().getSystemService(getApplicationContext().TELEPHONY_SERVICE);
    if(telephonyManager.getNetworkCountryIso()!=null)
        if (!telephonyManager.getNetworkCountryIso().toString().equals(""))
            iso = telephonyManager.getNetworkCountryIso().toString();

    return CountryToPhonePrefix.getPhone(iso);
}

ProgrammerX answers