Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 Android 中创建一个应用程序,我要求用户输入他的地址。用户有可能输入错误的地址,所以我如何检查输入的地址是否正确。
请帮忙
您可以在地图上显示此地址并要求用户确认它是正确的。简单的例子:
var uri = Android.Net.Uri.Parse ("geo:0,0?q=my+street+address"); var mapIntent = new Intent (Intent.ActionView, geouri); startActivity (mapIntent);