在Android Google Maps V2的自定义信息窗口中打开URL [英] Open URL from custom info window, Android Google Maps V2

查看:69
本文介绍了在Android Google Maps V2的自定义信息窗口中打开URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用带有许多标记的android google maps api v2.每次您单击标记时,都会打开带有特定标题/摘录的自定义信息窗口.问题是我无法单击URL"www.news.com". 请在下面找到我的标记的选项.我该如何指定"www.news.com"是.snippet属性中的HTML URL链接,以及当用户单击它以直接在mobiles Explorer中打开时?

I am using android google maps api v2 with many markers displayed on it. Each time you click on a marker a custom info window with specific tittle/snippet is open. The problem is that I cannot click on the URL "www.news.com". Please find below the options of my marker. How can I specify that the "www.news.com" is a HTML URL link inside the .snippet attribute, and when user clicking on it to open directly in mobiles explorer?

mMap.addMarker(new MarkerOptions()
        .position(new LatLng(39.686286, 19.838443))
        .title("HELLO")
        .snippet("Name: \nSurname: \nphone: XXX \nwebsite: www.news.com")
        .icon(BitmapDescriptorFactory.fromResource(R.drawable.location_icon)));

推荐答案

来自文档(我的重点):

如上一节中有关信息窗口的部分所述,信息窗口不是实时视图,而是将视图作为图像渲染到地图上.因此,您在视图上设置的所有侦听器都会被忽略,,并且您无法区分视图各部分上的点击事件.建议您不要在自定义信息窗口中放置交互式组件,例如按钮,复选框或文本输入.

As mentioned in the previous section on info windows, an info window is not a live View, rather the view is rendered as an image onto the map. As a result, any listeners you set on the view are disregarded and you cannot distinguish between click events on various parts of the view. You are advised not to place interactive components — such as buttons, checkboxes, or text inputs — within your custom info window.

不能从整个信息窗口中单独单击该URL.您可以考虑分配一个点击监听器转到信息窗口本身,并在每次单击信息窗口时导航到相应的网页.

The url cannot be clicked separately from the info window as a whole. You may consider assigning a click listener to the info window itself, and navigating to the appropriate webpage whenever the info window is clicked.

这篇关于在Android Google Maps V2的自定义信息窗口中打开URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆