I am not sure that this issue will be resolved in Android SDK 10.1.1 update 1 but I resolved this issue from SelectFeatures method of the featurelayer and get the callback. like this way...
ArrayList<Graphic> lstGraphics = new ArrayList<Graphic>();
featureLayer.selectFeatures(query, SELECTION_METHOD.NEW, new CallbackListener<FeatureSet>() {
@Override
public void onCallback(FeatureSet fs) {
// TODO Auto-generated method stub
Graphic[] features = fs.getGraphics();
for (Graphic feature : features)
{
if (feature == null)
continue;
lstGraphics.add(feature);
}
Graphic[] graphics= lstGraphics.toArray(new Graphic[0]);
}
}
Happy Coding.......
Sharad Arya