1

我有一个包含一个editText 字段和一个按钮的应用程序。用户可以在字段中输入地址,当他们按下按钮时,会创建一个调用 Google 地图应用程序的意图。

然后按预期加载,但由于某种原因,未找到提供的地址......

我不知道为什么。

在我的 XML 布局文件中引用 EditText。

 address = (EditText)findViewById(R.id.addressBox);

从 EditText 字段中检索输入并启动一个新的 Intent。

String location = address.getText().toString();
            location = location.replace(" ", "+");

            Intent i = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("geo:0,0?q=" + address));
            startActivity(i);

非常感谢任何建议。

当我尝试查找地址时,谷歌地图按预期启动,并显示 Toast 并显示以下错误消息:

“没有找到结果:android.widget.EditText 40d9fef8”

4

1 回答 1

2

看起来您正在将您的编辑文本传递给new Intent(). 再看看它,我怀疑你的意思"geo:0,0?q=" + location

于 2012-10-24T20:50:08.057 回答