所以我正在尝试制作一个应用程序,我的下一步是当用户单击特定按钮时,它将打开带有预定义搜索查询的谷歌地图。这是我的第一个应用程序。谢谢
问问题
868 次
1 回答
1
mButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(final View v) {
String uri = String.format("geo:%f,%f", latitude, longitude); // for example pass geo:75.333000,30.003030 to search for latitude = 75.333000 and longitude = 30.003030 as your default search query
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);
}
});
于 2012-08-26T21:42:17.503 回答