gpt4 book ai didi

android - 如何向 Google Map Android API v2 添加按钮之类的自定义 Controller ?

转载 作者:搜寻专家 更新时间:2023-11-01 08:52:38 26 4
gpt4 key购买 nike

有人能告诉我如何向 Google Map Android API V2 添加自定义 Controller (如按钮)吗?搜了很多,看了一下https://developers.google.com/maps/documentation/android/intro ,但在这方面我找不到任何东西。我之前在网络上做过同样的事情,并使用 Javascript 将 DIV 添加到 map 。对于 Android,我找不到任何东西。

最佳答案

看这个 xml 会将你的 Layout 放在你将在 RelativeLayout 中使用的任何 View 的底部

  <RelativeLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#FC0"
android:gravity="center" >

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="Fixed Footer"
android:textColor="#000"
android:textSize="20sp" />
</RelativeLayout>

关于android - 如何向 Google Map Android API v2 添加按钮之类的自定义 Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21717567/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com