如何在 MapView android 上添加按钮

发布于 2024-12-01 16:05:38 字数 124 浏览 1 评论 0原文

正如您从问题中看到的,我需要在地图视图上放置一些按钮,应用程序将通过用户按下按钮来刷新地图视图与当前位置。 我知道如何将按钮放在上面、下面,但是如何放在地图上??? 如果有人有一些示例代码,或者一些指导帮助,我们将不胜感激......

As you can see from the question I need to put some button on mapView, where the app will by presing the button by user, refresh the mapView with current location.
I know how to put the button above, under, but how to put on map???
If anyone has some sample code, or some guidance help is appreciated...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明明#如月 2024-12-08 16:05:38

您将需要使用RelativeLayout 并将按钮放置在MapView 之上。请确保不要将其放在 Google 徽标上方。下面是一个 XML 示例:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
    <com.google.android.maps.MapView android:id="@+id/google_maps"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="@string/maps_key"/>
    <Button android:id="@+id/googlemaps_select_location"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:text="Select"/>
</RelativeLayout>

You'll want to use a RelativeLayout and lay the button over top of the MapView. Just make sure not to place it over the Google logo. Here's a sample XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
    <com.google.android.maps.MapView android:id="@+id/google_maps"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="@string/maps_key"/>
    <Button android:id="@+id/googlemaps_select_location"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:text="Select"/>
</RelativeLayout>
始终不够爱げ你 2024-12-08 16:05:38

你好,伙计,搜索覆盖项目就是你所需要的:D 这里谷歌链接
http://developer.android.com/resources/tutorials/views/hello -mapview.html

和很好的示例:D

https://github.com/jgilfelt/android-mapviewballoons

Hi man search for overlay item is what you need :D here google link
http://developer.android.com/resources/tutorials/views/hello-mapview.html

and good sample :D

https://github.com/jgilfelt/android-mapviewballoons

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文