Skip to content

Commit

Permalink
Merge pull request Esri#110 from kneemer/readme-update
Browse files Browse the repository at this point in the history
remove extra backtick
  • Loading branch information
shellygill committed Jan 15, 2016
2 parents 80b01f0 + f73df93 commit 5320d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IdentifyTask/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ The purpose of this sample is to show the user how to use the Identify task to q
## Sample Design
The maps layers are added to the map via code in the activities ```onCreate()``` method and the parameters for the ```IdentifyTask``` are also created (map service uniform resource locator [URL] and layers to query). An ```OnSingleTapListener``` is set on the map and within this class, the ```IdentifyTask``` is created and invoked via an ```Executor``` (as the Task abstract super class implements the ```Callable<T>``` interface), which allows the task to run in a different thread from the main thread. The geometry is obtained from the ```onSingleTap``` event and is passed to the task. The results from the ```IdentifyTask``` are processed in the ```onCompletion()``` method and placed in a map ```Callout```.

In the ```Callout```, a spinner is customized by overriding the ````IdentifyResultSpinnerAdapter``` class. In the new adapter within the ```getView()``` method, create a ```ListView``` that is populated with ```IdentifyResult```.
In the ```Callout```, a spinner is customized by overriding the ```IdentifyResultSpinnerAdapter``` class. In the new adapter within the ```getView()``` method, create a ```ListView``` that is populated with ```IdentifyResult```.

0 comments on commit 5320d2b

Please sign in to comment.