Как я могу передать аргументы AsyncTask и вернуть результаты в переменную поля из другого класса?
У меня проблема с asynctask
в андроиде Java. это та же проблема, что и эта: переменная возвращает нуль вне asynctask android, моя asynctask получает данные из URL, чтобы получить направление google maps
! Это где я вызываю мой код, внутри onrespondre => myvaraible есть данные, но за пределами переменной null
,
public void onResponse(String status, Document doc, final GoogleDirection gd) {
mMap.addMarker(new MarkerOptions()
.position(
new LatLng(myLocation.getLatitude(), myLocation
.getLongitude()))
.icon(BitmapDescriptorFactory
.defaultMarker(BitmapDescriptorFactory.HUE_BLUE)));
mMap.addMarker(new MarkerOptions().position(Position).icon(
BitmapDescriptorFactory
.defaultMarker(BitmapDescriptorFactory.HUE_RED)));
mMap.addPolyline(gd.getPolyline(doc, 3, Color.RED));
MyVariable = gd.getTotalDurationValue(doc);
}
это класс:
private class RequestTask extends AsyncTask<String, Void, Document> {
protected Document doInBackground(String... url) {
try {
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpPost httpPost = new HttpPost(url[0]);
HttpResponse response = httpClient.execute(httpPost,
localContext);
InputStream in = response.getEntity().getContent();
DocumentBuilder builder = DocumentBuilderFactory.newInstance()
.newDocumentBuilder();
return builder.parse(in);
} catch (IOException e) {
e.printStackTrace();
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
}
return null;
}
protected void onPostExecute(Document doc) {
super.onPostExecute(doc);
if (mDirectionListener != null) {
mDirectionListener.onResponse(getStatus(doc), doc,
GoogleDirection.this);
}
}
private String getStatus(Document doc) {
NodeList nl1 = doc.getElementsByTagName("status");
Node node1 = nl1.item(0);
if (isLogging) {
Log.i("GoogleDirection", "Status : " + node1.getTextContent());
}
return node1.getTextContent();
}
}
2 ответа
Похоже getter setter
с очень простые. Но для людей, которые не знают:
Отдельный класс для метода получения
public class getterSetter{
String test;
public getterSetter()
{
super();
test= "";
}
public String getStatus()
{
return test;
}
public setStatus(String input)
{
test= input;
}
}
В вашем Asynctask
:
protected void onPostExecute(Document doc) {
super.onPostExecute(doc);
setStatus(getStatus(doc));
if (mDirectionListener != null) {
mDirectionListener.onResponse(doc,
GoogleDirection.this);
}
И в твоем onResponse
метод:
public void onResponse(Document doc, final GoogleDirection gd) {
String status = getStatus();
mMap.addMarker(new MarkerOptions()
.position(
new LatLng(myLocation.getLatitude(), myLocation
.getLongitude()))
.icon(BitmapDescriptorFactory
.defaultMarker(BitmapDescriptorFactory.HUE_BLUE)));
mMap.addMarker(new MarkerOptions().position(Position).icon(
BitmapDescriptorFactory
.defaultMarker(BitmapDescriptorFactory.HUE_RED)));
mMap.addPolyline(gd.getPolyline(doc, 3, Color.RED));
MyVariable = gd.getTotalDurationValue(doc);
}
Вот что вы можете сделать:
Определите метод получения - установки для переменной, которую вы хотите. В вашем методе onPostExecute задайте значение вашей переменной, а когда вам нужно его получить, получите значение из получателя. Вы можете использовать отдельный класс для getter - setter.