iso3 country code.whenを取得する方法私はサーバーを保管しますが、データベースの100%を保管していませんか?私はこれらのcode.Pleaseは感謝私を助けるとアドバンス...iso国コードを取得
geocoder = new Geocoder(this);
locationManager = (LocationManager)getSystemService(LOCATION_SERVICE);
Criteria criteria = new Criteria();
bestProvider =locationManager.getBestProvider(criteria,false);
location = locationManager.getLastKnownLocation(bestProvider);
if(location!=null)
{
lat=location.getLatitude();
lng=location.getLongitude();
}
else
{
location = new Location("");
location.setLatitude((double)38.0000000000);
location.setLongitude((double)-97.0000000000);
lat =location.getLatitude();
lng=location.getLongitude();
}
Log.e("","Latitude and Longitude"+"Latitude="+lat+"Longitude="+lng);
try
{
addresses=geocoder.getFromLocation(lat,lng, 1);
}
catch (IOException e)
{
e.printStackTrace();
}
if (addresses != null && addresses.size() > 0)
{
Address address = addresses.get(0);
Log.e("Address=",""+address);
locale = address.getCountryCode();
Log.e("Locale",""+locale);
Toast.makeText(SongsList.this, "LocaleName"+locale,Toast.LENGTH_LONG).show();
}
、私は2枚のモバイルサムスンギャラクシーエースと正常に動作しHTCのDesire.HTCの欲望(IND)とサムスンギャラクシーエースを持っています国コード英国(GRB)を取得します。 –
あなたから何か答えがありますか? –
おかげさまでアドバイスをよろしくお願いします.. –