# ArcGIS Android Issue Template GitHub is **ONLY** used for issues pertaining to ArcGIS Runtime SDK Samples. Use [GeoNet](https://geonet.esri.com/community/developers/native-app-developers/arcgis-runtime-sdk-for-android) for any general ArcGIS Runtime Android SDK questions. Is this something you can [contribute](CONTRIBUTING.md)? Send a pull request! New Samples, bug fixes and documentation fixes are welcome. Neither of the above? Submit an issue: <!--- Provide a general summary of the issue in the Title above --> ## Feature or Bug? <!-- Is this a bug in an existing sample? Or is this a Sample request? --> ## Behavior <!--- Tell us what is happening in the sample or what you would like to happen --> ## Steps to Reproduce <!--- Provide the sample that is causing the issue and any steps to reproduce --> <!-- Or provide an expected workflow if a new sample request --> 1.我想在shp表中添加字段,但是没有成功,我的代码: Map<String, Object> dss = new HashMap<>(); dss.put("Name","hhhhh"); dss.put("TFH","hhhhh"); feature.getFeatureTable().createFeature(dss,mapPoint); final ListenableFuture<Void> addFeatureOper = featureLayer.getFeatureTable().addFeatureAsync(feature); 2. 3. 4.
ArcGIS Android Issue Template
GitHub is ONLY used for issues pertaining to ArcGIS Runtime SDK Samples. Use GeoNet for any general ArcGIS Runtime Android SDK questions.
Is this something you can contribute? Send a pull request! New Samples, bug fixes and documentation fixes are welcome.
Neither of the above? Submit an issue:
Feature or Bug?
Behavior
Steps to Reproduce
1.我想在shp表中添加字段,但是没有成功,我的代码:
Map<String, Object> dss = new HashMap<>();
dss.put("Name","hhhhh");
dss.put("TFH","hhhhh");
feature.getFeatureTable().createFeature(dss,mapPoint);
final ListenableFuture addFeatureOper = featureLayer.getFeatureTable().addFeatureAsync(feature);
2.
3.
4.