如何在Google地图上添加搜索图标?

时间:2013-11-07 09:59:53

标签: android google-maps

我正在使用Google地图v2来绘制地图。我需要在地图上方显示一个搜索框,该搜索框固定在屏幕顶部。我尝试了很多方法来覆盖它,但它没有用。是否有用于在地图上叠加自定义视图的API?

1 个答案:

答案 0 :(得分:1)

您可以使用RelativeLayout,例如:

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

<EditText
    android:id="@+id/editTextLocation"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="60dp"
    android:layout_marginRight="60dp"
    android:layout_marginTop="13dp"
    android:background="@android:color/white"
    android:hint="@string/search"
    android:imeOptions="actionSearch"
    android:inputType="text"
    android:padding="5dp" />

<fragment
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/buttonMap"
    android:layout_alignParentTop="true" />

<Button
    android:id="@+id/buttonMap"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:enabled="false"
    >
</Button>

在代码中,使用bringToFront()方法。

// show editext over map
mEditText.bringToFront();