在Android上向Google Maps Marker添加自定义页脚按钮

时间:2015-02-27 21:46:16

标签: android google-maps

当我点击MapFragment内的Marker时,地图底部会出现两个按钮(用于路线和搜索)。如何自定义这些按钮?

我在这里搜索了一些提示,但只找到了如何在信息窗口中添加按钮......

感谢。

1 个答案:

答案 0 :(得分:0)

您可以使用包含3个孩子的FrameLayout,并将底部按钮的android:visibility设置为invisible

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="match_parent"
             android:layout_height="match_parent">

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/map"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:name="com.google.android.gms.maps.SupportMapFragment"
          />

    <Button
        android:layout_gravity="bottom|left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="invisible"
        android:text="Button 1"/>

    <Button
        android:layout_gravity="bottom|right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="invisible"
        android:text="Button 2"
        />

</FrameLayout>

(如果你没有设置android:visibility="invisible",你可以在mapFragment的底部看到这两个按钮,见下图)

enter image description here

onMarkerClick方法中,您可以将这两个按钮的不可见性更改为可见的示例代码:

button1.setVisibility(View.VISIBLE);
button2.setVisibility(View.VISIBLE);