I am creating an application in Android where I ask user to enter his address.There are chances that a user can enter wrong address so how can I check that the entered address is correct or not.
Please Help
I am creating an application in Android where I ask user to enter his address.There are chances that a user can enter wrong address so how can I check that the entered address is correct or not.
Please Help
You could show this address on the map and ask the user to confirm it's correct. Simple example:
var uri = Android.Net.Uri.Parse ("geo:0,0?q=my+street+address");
var mapIntent = new Intent (Intent.ActionView, geouri);
startActivity (mapIntent);