我正在使用 Google maps v2 来绘制地图。我需要在固定在屏幕顶部的地图上显示一个搜索框。我尝试了很多方法来覆盖它,但它不起作用。是否有用于在地图上覆盖自定义视图的 API?
问问题
587 次
1 回答
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();
于 2013-11-07T10:04:17.847 回答