当我使用以下代码时,它总是将国家代码显示为美国。
context = MainActivity.this;
String locale = context.getResources().getConfiguration().locale.getCountry();
TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
telephonyManager.getSimCountryIso();
如何在模拟器中手动将设置国家代码设置为 IN(印度)。