座標を自分の場所に変換して、GPS 経由で住所を取得しようとしています。私はこのコードを使用しています:
latitude1 = (location.getLatitude());
longitude2= (location.getLongitude());
JSONObject ret = getLocationInfo();
JSONObject location2;
String location_string;
try {
location2 = ret.getJSONArray("results").getJSONObject(0);
location_string = location2.getString("formatted_address");
Log.d("test", "formattted address:" + location_string);
StringRua = (" " + location_string);
} catch (JSONException e1) {
e1.printStackTrace();
}
と
public JSONObject getLocationInfo()
{
HttpGet httpGet = new HttpGet("http://maps.google.com/maps/api/geocode/json?latlng="+latitude1+","+longitude2+"&sensor=true");
HttpClient client = new DefaultHttpClient();
HttpResponse response;
StringBuilder stringBuilder = new StringBuilder();
try {
response = client.execute(httpGet);
HttpEntity entity = response.getEntity();
InputStream stream = entity.getContent();
int b;
while ((b = stream.read()) != -1) {
stringBuilder.append((char) b);
}
} catch (ClientProtocolException e) {
} catch (IOException e) {
}
JSONObject jsonObject = new JSONObject();
try {
jsonObject = new JSONObject(stringBuilder.toString());
} catch (JSONException e) {
e.printStackTrace();
}
return jsonObject;
}
私の携帯電話では問題なく動作します。しかし、コードのこの部分が実行されているときに友人が同じアプリを使用しようとすると、アプリは強制終了します。
私はすでに使用しようとしたことに注意してください:
Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocation(latitude1, longitude2, 1);
しかし、このコマンドを実行するには遅すぎました。実際、常に null が返されました。
誰でも私を助けることができますか?ありがとうございました
編集: asynctask を使用するようにコードを変更しましたが、場所を正しく取得できず、null と表示されます。
これが私がしたことです:
private class AsyncCaller extends AsyncTask<Void, Void, Void>
{
ProgressDialog pdLoading = new ProgressDialog(MainActivity.this);
@Override
protected void onPreExecute() {
super.onPreExecute();
//this method will be running on UI thread
pdLoading.setMessage("\tLoading...");
pdLoading.show();
}
@Override
protected Void doInBackground(Void... params) {
//this method will be running on background thread so don't update UI frome here
//do your long running http tasks here,you dont want to pass argument and u can access the parent class' variable url over here
JSONObject ret = getLocationInfo();
JSONObject location2;
String location_string;
try {
location2 = ret.getJSONArray("results").getJSONObject(0);
location_string = location2.getString("formatted_address");
Log.d("test", "formattted address:" + location_string);
StringRua = (" " + location_string);
} catch (JSONException e1) {
e1.printStackTrace();
}
return null;
}
AsyncTask の上にある非同期タスク呼び出し:
public JSONObject getLocationInfo() {
HttpGet httpGet = new HttpGet("http://maps.google.com/maps/api/geocode/json?latlng="+latitude1+","+longitude2+"&sensor=true");
HttpClient client = new DefaultHttpClient();
HttpResponse response;
StringBuilder stringBuilder = new StringBuilder();
try {
response = client.execute(httpGet);
HttpEntity entity = response.getEntity();
InputStream stream = entity.getContent();
int b;
while ((b = stream.read()) != -1) {
stringBuilder.append((char) b);
}
} catch (ClientProtocolException e) {
} catch (IOException e) {
}
JSONObject jsonObject = new JSONObject();
try {
jsonObject = new JSONObject(stringBuilder.toString());
} catch (JSONException e) {
e.printStackTrace();
}
return jsonObject;
}
そして、私は Async を呼び出すために使用しています:
new AsyncCaller().execute();
" StringRua = (" " + location_string); " は場所を取得していません
編集 2:パブリック JSONObject getLocationInfo() をプライベートクラス AsyncCaller extends AsyncTask内に配置しました {
最初に asynctask を呼び出したときは場所を取得できませんが、2 回目は機能することがわかりました。しかし、asynctask を初めて呼び出すときに、これを機能させる必要があります。OBS: 私の友人の電話ではもうクラッシュしませんが、彼は常に Null になっています