Android Here-API:如何将按钮添加到Here map infobubble

时间:2016-02-07 06:43:52

标签: android here-api infobubble

是否可以在Here here info-bubble中添加一个按钮。我在这里检查了Android地图api,但没有找到任何有用的东西。只是想知道是否有人曾经尝试过这个?

由于

1 个答案:

答案 0 :(得分:0)

您应该使用InfoBubbleAdapter设置气泡布局:

Map hMap.setInfoBubbleAdapter(new Map.InfoBubbleAdapter() {
            @Override
            public View getInfoBubbleContents(MapMarker mapMarker) {
                return null;
            }

            @Override
            public View getInfoBubble(final MapMarker mapMarker) {
                View bubble;
                bubble = LayoutInflater.from(getActivity()).inflate(R.layout.tooltip_cluster, container, false);
                Button btn = (Button) bubble.findViewById(R.id.btnBubble);
                return bubble;
            }
        });

并在布局中定义按钮

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="?android:attr/actionBarSize"
    android:background="#00f">

    <EditText
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:gravity="center"
        android:hint="Hello World !"
        android:textColor="@android:color/white"
        android:background="#c0392b"/>

    <Button
        android:layout_below="@+id/btnBubble"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="click ME !"/>

</RelativeLayout>