Solved! Go to Solution.
private class AsyncQueryTask extends AsyncTask<String, Void, FeatureSet> {
protected FeatureSet doInBackground(String... queryParams) {
//execute your query here
}
protected void onPostExecute(FeatureSet result) {
if (result != null) {
//if the query result is not null, do something....
}
}
}
Hi everyone!
I have the same problem, did anyone has a solution?
Thanks!