Autocomplete editor in Android
This example will demonstrate how to add an autocomplete editor for a property called City on Android.
First, let's create the source object:
Then you have to specify that a custom editor will be used for the City property.
Then you have to inherit from the default DataFormRenderer and override some of its methods.
Where the following namespaces are used:
You have to define the data_form_autocomplete_item resource in the Resources\layout folder of the Android project. If the folder is missing, you have to create it. Then add the the following file: data_form_autocomplete_item.xml
After that you will have to replace the default DataFormRenderer with the new one in MainActivity.cs:
Result: