gpt4 book ai didi

android - 像谷歌地图一样在右下角添加自定义位置按钮

转载 作者:行者123 更新时间:2023-11-29 19:26:37 27 4
gpt4 key购买 nike

在我的应用程序中使用 map 在右下角添加一个按钮,并在不同状态下更改此按钮(如在 Google map 中)的最佳方法是什么?我正在使用 OSMDroid 并且需要添加自定义按钮,而不是默认按钮。

enter image description here

最佳答案

使用这个布局,它会得到你正在寻找的东西

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<RelativeLayout

android:layout_width="match_parent"
android:layout_height="match_parent">

<fragment

android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<ImageView
android:id="@+id/imageViewFlagPassenger"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@android:color/transparent"
android:src="@drawable/marker" />

<ImageView
android:id="@+id/btn_passenger_current_location"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="20dp"
android:layout_marginRight="10dp"
android:background="@drawable/location_icon" />

</RelativeLayout>

</LinearLayout>

关于android - 像谷歌地图一样在右下角添加自定义位置按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41259056/

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