安卓地图意图为地图设置到浏览器,我如何重置



我有一个启动导航的应用程序,代码类似于:

  Uri uri = Uri.parse("http://maps.google.com/maps?saddr=42.35892,-71.05781&daddr=40.756054,-73.986951");
 Intent intent = new Intent(android.content.Intent.ACTION_VIEW, uri);
     startActivity(intent); 

在我第一次运行的模拟器中,它要求我选择应用程序、MAPS或WEB,我选择了WEB,现在模拟器总是通过WEB搜索地图,我该如何重置此设置,以便它再次询问我,以便我可以使用地图应用程序测试所有内容?

您需要在操作系统下的管理应用程序中更改默认应用程序设置。你可以使用这个http://www.howtogeek.com/?post_type=post&p=43135作为引导。

相关内容

  • 没有找到相关文章

最新更新